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

Vlad Lungu vlad at comsys.ro
Wed Jan 23 15:40:20 CET 2008


Otherwise asm/mpc8xxx_spi.h is not found for non-ppc targets

and compilation fails

Signed-off-by: Vlad Lungu <vlad at 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







More information about the U-Boot mailing list