From 3721eaf28e5e074bebf8191e37dacbd75ffc459d Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Mon, 13 Jul 2015 13:17:05 +0900 Subject: linux_compat: remove cpu_relax() define The macro cpu_relax() is defined by several headers in different ways. arch/{arm,avr32,mips}/include/asm/processor.h defines it as follows: #define cpu_relax() barrier() On the other hand, include/linux/compat.h defines it as follows: #define cpu_relax() do {} while (0) If both headers are included from the same source file, the warning warning: "cpu_relax" redefined [enabled by default] is displayed. It effectively makes it impossible to include from some sources. Drop the latter. Signed-off-by: Masahiro Yamada Reviewed-by: Heiko Schocher Acked-by: Simon Glass Reviewed-by: Lukasz Majewski --- drivers/usb/musb-new/musb_gadget_ep0.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/usb') diff --git a/drivers/usb/musb-new/musb_gadget_ep0.c b/drivers/usb/musb-new/musb_gadget_ep0.c index 5a71501..415a9f2 100644 --- a/drivers/usb/musb-new/musb_gadget_ep0.c +++ b/drivers/usb/musb-new/musb_gadget_ep0.c @@ -43,6 +43,7 @@ #else #include #include "linux-compat.h" +#include #endif #include "musb_core.h" -- cgit v1.1