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>
 #ifdef CONFIG_CMD_NAND
        afeb9260_nand_hw_init();
 #endif
-       at91_spi0_hw_init((1 << 0) || (1 << 1));
+       at91_spi0_hw_init((1 << 0) | (1 << 1));
 #ifdef CONFIG_MACB
        afeb9260_macb_hw_init();
 #endif
 
        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();