commit 29467485 (usb: gadget: add SuperSpeed support to the Gadget Framework) introduced a compile error to the ARM architecture by directly including <linux/unaligned/access_ok.h> where we should be including <asm/unaligned.h> this patch is fixing that mistake. Cc: Tatyana Brokhman <tlinder@xxxxxxxxxxxxxx> Acked-by: Sebastian Andrzej Siewior <bigeasy@xxxxxxxxxxxxx> Signed-off-by: Felipe Balbi <balbi@xxxxxx> --- drivers/usb/gadget/composite.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c index d825dbc..a225122 100644 --- a/drivers/usb/gadget/composite.c +++ b/drivers/usb/gadget/composite.c @@ -27,7 +27,7 @@ #include <linux/utsname.h> #include <linux/usb/composite.h> -#include <linux/unaligned/access_ok.h> +#include <asm/unaligned.h> /* * The code in this file is utility code, used to build a gadget driver -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html