diff options
| author | Tom Warren <twarren.nvidia@gmail.com> | 2012-06-01 08:22:14 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD (U-Boot) <uboot@lilith.(none)> | 2012-07-09 22:44:32 +0200 | 
| commit | 1e2d7859758499a25fa392deb5cfda95372d97ae (patch) | |
| tree | 64d3579567bb3954f578a3988ff4d5dedf8d4313 /board/nvidia/common/board.c | |
| parent | d70575b6d0d53492c0920b9a3d4479964909dc9b (diff) | |
| download | olio-uboot-2014.01-1e2d7859758499a25fa392deb5cfda95372d97ae.tar.xz olio-uboot-2014.01-1e2d7859758499a25fa392deb5cfda95372d97ae.zip | |
tegra: fix leftover CONFIG_TEGRA2_MMC & _SPI build switches
Missed some boards after my tegra2_mmc.* -> tegra_mmc.* change, and
one instance of CONFIG_TEGRA2_SPI. MAKEALL -s tegra2 AOK, Seaboard MMC
AOK. Didn't test Tamonten, Paz00 or TrimSlice, as I have none here.
Signed-off-by: Tom Warren <twarren@nvidia.com>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'board/nvidia/common/board.c')
| -rw-r--r-- | board/nvidia/common/board.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index a159deb67..fc8b928cf 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -94,7 +94,7 @@ int board_init(void)  #ifdef CONFIG_SPI_UART_SWITCH  	gpio_config_uart();  #endif -#ifdef CONFIG_TEGRA2_SPI +#ifdef CONFIG_TEGRA_SPI  	spi_init();  #endif  	/* boot param addr */ |