summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Bießmann <[email protected]>2012-03-13 05:01:51 +0000
committerAlbert ARIBAUD <[email protected]>2012-03-28 23:41:18 +0200
commit77c3d844b0e2617dace78b39433aebe5d219187d (patch)
tree6c12be2aef710f704ebe63c173c6e35ae8693557
parent4a3ea216414ad762b3718775a65437c13f0accbc (diff)
atmel-boards: add missing atmel_mci.h
commit 72fa467988e7944407a634ddc4bc6a2df685c04c moved atmel_mci_init() into include/atmel_mci.h. Some AT91 boards are also using this interface and need to include atmel_mci.h now. This patch fixes MAKEALL complaints like this: ---8<--- Configuring for ethernut5 - Board: ethernut5, Options: AT91SAM9XE ethernut5.c: In function 'board_mmc_init': ethernut5.c:235:2: warning: implicit declaration of function 'atmel_mci_init' [-Wimplicit-function-declaration] --->8--- Signed-off-by: Andreas Bießmann <[email protected]> CC: Albert Aribaud <[email protected]> CC: Reinhard Meyer <[email protected]> CC: egnite GmbH <[email protected]>
-rw-r--r--board/egnite/ethernut5/ethernut5.c1
-rw-r--r--board/emk/top9000/top9000.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/board/egnite/ethernut5/ethernut5.c b/board/egnite/ethernut5/ethernut5.c
index fd021a3af8b..e99f437a315 100644
--- a/board/egnite/ethernut5/ethernut5.c
+++ b/board/egnite/ethernut5/ethernut5.c
@@ -77,6 +77,7 @@
#include <spi.h>
#include <dataflash.h>
#include <mmc.h>
+#include <atmel_mci.h>
#include <asm/arch/at91sam9260.h>
#include <asm/arch/at91sam9260_matrix.h>
diff --git a/board/emk/top9000/top9000.c b/board/emk/top9000/top9000.c
index e0b4cf2c330..86a8d0b5660 100644
--- a/board/emk/top9000/top9000.c
+++ b/board/emk/top9000/top9000.c
@@ -29,6 +29,7 @@
#include <net.h>
#include <netdev.h>
#include <mmc.h>
+#include <atmel_mci.h>
#include <i2c.h>
#include <spi.h>
#include <asm/io.h>