[U-Boot-Users] [PATCH] Move #ifdef CONFIG_HARD_SPI right after #include <config.h>

23 Jan
2008
23 Jan
'08
3:40 p.m.
Otherwise asm/mpc8xxx_spi.h is not found for non-ppc targets
and compilation fails
Signed-off-by: Vlad Lungu vlad@comsys.ro --- drivers/spi/mpc8xxx_spi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/spi/mpc8xxx_spi.c b/drivers/spi/mpc8xxx_spi.c index a3d1c95..6bd6bde 100644 --- a/drivers/spi/mpc8xxx_spi.c +++ b/drivers/spi/mpc8xxx_spi.c @@ -22,11 +22,11 @@ */
#include <common.h> +#ifdef CONFIG_HARD_SPI + #include <spi.h> #include <asm/mpc8xxx_spi.h>
-#ifdef CONFIG_HARD_SPI - #define SPI_EV_NE (0x80000000 >> 22) /* Receiver Not Empty */ #define SPI_EV_NF (0x80000000 >> 23) /* Transmitter Not Full */
--
1.5.2.2
6319
Age (days ago)
6319
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vlad Lungu