From 977a39e60036ebd5783bb8cd712014dcfdfb8617 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Thu, 17 Nov 2011 00:10:23 +0000 Subject: tegra2: Move tegra2_mmc_init() prototype to public header. tegra2_mmc_init() is implemented by the Tegra2 MMC driver. Since most of the Tegra2-based boards will need to call it, this commit exports it in the new public asm/arch/mmc.h header file to prevent each board from providing its own prototype. Signed-off-by: Thierry Reding Acked-by: Stephen Warren Tested-by: Stephen Warren Acked-by: Simon Glass Signed-off-by: Tom Warren --- board/nvidia/common/board.h | 1 - board/nvidia/harmony/harmony.c | 2 +- board/nvidia/seaboard/seaboard.c | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) (limited to 'board/nvidia') diff --git a/board/nvidia/common/board.h b/board/nvidia/common/board.h index 80fdcbe..a638af2 100644 --- a/board/nvidia/common/board.h +++ b/board/nvidia/common/board.h @@ -25,7 +25,6 @@ #define _BOARD_H_ void gpio_config_uart(void); -int tegra2_mmc_init(int dev_index, int bus_width, int pwr_gpio, int cd_gpio); void gpio_early_init_uart(void); #endif /* BOARD_H */ diff --git a/board/nvidia/harmony/harmony.c b/board/nvidia/harmony/harmony.c index 3cbe820..d5e147d 100644 --- a/board/nvidia/harmony/harmony.c +++ b/board/nvidia/harmony/harmony.c @@ -25,11 +25,11 @@ #include #include #include +#include #include #ifdef CONFIG_TEGRA2_MMC #include #endif -#include "../common/board.h" /* * Routine: gpio_config_uart diff --git a/board/nvidia/seaboard/seaboard.c b/board/nvidia/seaboard/seaboard.c index 0b779f6..56acd61 100644 --- a/board/nvidia/seaboard/seaboard.c +++ b/board/nvidia/seaboard/seaboard.c @@ -25,11 +25,11 @@ #include #include #include +#include #include #ifdef CONFIG_TEGRA2_MMC #include #endif -#include "../common/board.h" /* TODO: Remove this code when the SPI switch is working */ #ifndef CONFIG_SPI_UART_SWITCH -- cgit v1.1