diff options
author | Thierry Reding <thierry.reding@avionic-design.de> | 2011-11-17 00:10:23 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-24 10:23:31 +0100 |
commit | 977a39e60036ebd5783bb8cd712014dcfdfb8617 (patch) | |
tree | 6cc50fcddacd23f7570e4e7c70f49425d2e41aee /board/nvidia/seaboard/seaboard.c | |
parent | 0350c6b924146814ab5390dd5f74665088354a21 (diff) | |
download | u-boot-imx-977a39e60036ebd5783bb8cd712014dcfdfb8617.zip u-boot-imx-977a39e60036ebd5783bb8cd712014dcfdfb8617.tar.gz u-boot-imx-977a39e60036ebd5783bb8cd712014dcfdfb8617.tar.bz2 |
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 <thierry.reding@avionic-design.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/nvidia/seaboard/seaboard.c')
-rw-r--r-- | board/nvidia/seaboard/seaboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <asm/io.h> #include <asm/arch/tegra2.h> #include <asm/arch/pinmux.h> +#include <asm/arch/mmc.h> #include <asm/gpio.h> #ifdef CONFIG_TEGRA2_MMC #include <mmc.h> #endif -#include "../common/board.h" /* TODO: Remove this code when the SPI switch is working */ #ifndef CONFIG_SPI_UART_SWITCH |