[PATCH] usb: fix build for big-endian platform

Antony Pavlov antonynpavlov at gmail.com
Thu Feb 28 15:05:02 EST 2013


The problem was introduced in

    commit 51885a7d7321c3e6395c36bc4fe8dde7e78cf562
    Author: Sascha Hauer <s.hauer at pengutronix.de>
    Date:   Thu Jun 28 09:56:23 2012 +0200

    Change byte order detection mechanism to kernel style

Signed-off-by: Antony Pavlov <antonynpavlov at gmail.com>
---
 include/usb/usb.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/usb/usb.h b/include/usb/usb.h
index 4649ee2..afccf70 100644
--- a/include/usb/usb.h
+++ b/include/usb/usb.h
@@ -270,7 +270,7 @@ void usb_rescan(void);
 #ifdef __LITTLE_ENDIAN
 # define swap_16(x) (x)
 # define swap_32(x) (x)
-#elif defined BIG_ENDIAN
+#elif defined __BIG_ENDIAN
 # define swap_16(x) __swap_16(x)
 # define swap_32(x) __swap_32(x)
 #else
-- 
1.7.10.4




More information about the barebox mailing list