summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/imx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-27 17:19:38 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-27 17:19:38 -0600
commitb2f95886d464d42db186e05505ed6a6497b13521 (patch)
tree910e168e141654c73ea37c9cb1c4a29b4ed44ef4 /nuttx/arch/arm/src/imx
parent09e5fb91789be7024efa9071a7ed0b94145be489 (diff)
downloadnuttx-b2f95886d464d42db186e05505ed6a6497b13521.tar.gz
nuttx-b2f95886d464d42db186e05505ed6a6497b13521.tar.bz2
nuttx-b2f95886d464d42db186e05505ed6a6497b13521.zip
arch/: board function prototypes are now in include/nuttx/board.h. Remove from architecture header file; Add inclusion of nuttx/board.h to all files referencing board functions
Diffstat (limited to 'nuttx/arch/arm/src/imx')
-rw-r--r--nuttx/arch/arm/src/imx/imx_allocateheap.c4
-rw-r--r--nuttx/arch/arm/src/imx/imx_boot.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/nuttx/arch/arm/src/imx/imx_allocateheap.c b/nuttx/arch/arm/src/imx/imx_allocateheap.c
index 93c0f48c0..eb5e8400e 100644
--- a/nuttx/arch/arm/src/imx/imx_allocateheap.c
+++ b/nuttx/arch/arm/src/imx/imx_allocateheap.c
@@ -1,8 +1,7 @@
/****************************************************************************
* arch/arm/src/imx/imx_allocateheap.c
- * arch/arm/src/chip/imx_allocateheap.c
*
- * Copyright (C) 2009, 2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -46,6 +45,7 @@
#include <nuttx/kmalloc.h>
#include <nuttx/arch.h>
+#include <nuttx/board.h>
#include <arch/board/board.h>
#include "chip.h"
diff --git a/nuttx/arch/arm/src/imx/imx_boot.c b/nuttx/arch/arm/src/imx/imx_boot.c
index e1dfb7846..25a3205f6 100644
--- a/nuttx/arch/arm/src/imx/imx_boot.c
+++ b/nuttx/arch/arm/src/imx/imx_boot.c
@@ -1,8 +1,7 @@
/************************************************************************************
* arch/arm/src/imx/imx_boot.c
- * arch/arm/src/chip/imx_boot.c
*
- * Copyright (C) 2009, 2011-2012 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011-2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -45,6 +44,8 @@
#include "up_internal.h"
#include "up_arch.h"
+#include <nuttx/board.h>
+
/************************************************************************************
* Pre-processor Definitions
************************************************************************************/