summaryrefslogtreecommitdiffstats
path: root/board/atmel
diff options
context:
space:
mode:
authorAlbin Tonnerre <albin.tonnerre@free-electrons.com>2009-09-01 11:26:20 +0200
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-09-01 22:10:10 +0200
commit50b5fff55827946c86a60db8b21a9358be720666 (patch)
tree3378bbc8e32d9c6f5d3a6568465a0a21c2d5171a /board/atmel
parentf3d4f8870e69e0fd177397778d97d0751bbd020a (diff)
downloadtalos-obmc-uboot-50b5fff55827946c86a60db8b21a9358be720666.tar.gz
talos-obmc-uboot-50b5fff55827946c86a60db8b21a9358be720666.zip
at91sam9260/afeb9260: Fix SPI initialization
Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi init function call for those boards. This patch fixes this. Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
Diffstat (limited to 'board/atmel')
-rw-r--r--board/atmel/at91sam9260ek/at91sam9260ek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/atmel/at91sam9260ek/at91sam9260ek.c b/board/atmel/at91sam9260ek/at91sam9260ek.c
index c10ad72534..ed4736027c 100644
--- a/board/atmel/at91sam9260ek/at91sam9260ek.c
+++ b/board/atmel/at91sam9260ek/at91sam9260ek.c
@@ -160,7 +160,7 @@ int board_init(void)
at91sam9260ek_nand_hw_init();
#endif
#ifdef CONFIG_HAS_DATAFLASH
- at91_spi0_hw_init((1 << 0) || (1 << 1));
+ at91_spi0_hw_init((1 << 0) | (1 << 1));
#endif
#ifdef CONFIG_MACB
at91sam9260ek_macb_hw_init();
OpenPOWER on IntegriCloud