diff mbox

[RFC] MUSB: Workaround for Ethernet data alignment issue

Message ID FCCFB4CDC6E5564B9182F639FC35608702FABD2171@dbde02.ent.ti.com (mailing list archive)
State Changes Requested, archived
Headers show

Commit Message

vikram pandita Dec. 14, 2009, 5:39 p.m. UTC
None
diff mbox

Patch

diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/system.h
index 058e7e9..b16c5f7 100644
--- a/arch/arm/include/asm/system.h
+++ b/arch/arm/include/asm/system.h
@@ -514,6 +514,10 @@  static inline unsigned long long __cmpxchg64_mb(volatile void *ptr,

 #define arch_align_stack(x) (x)

+#if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4)
+#define NET_IP_ALIGN 0
+#endif
+
 #endif /* __KERNEL__ */

 #endif