This patch (as1629) fixes a build error in the ChipIdea host driver when compiled for the ARM architecture. The error was introduced by commit 99f91934a907df31ba878dfdd090002049dc476a (USB: EHCI: make ehci-platform a separate driver). The fix is simple; an additional header-file #include is needed. Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Tested-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> --- drivers/usb/chipidea/host.c | 1 + 1 file changed, 1 insertion(+) Index: usb-3.7/drivers/usb/chipidea/host.c =================================================================== --- usb-3.7.orig/drivers/usb/chipidea/host.c +++ usb-3.7/drivers/usb/chipidea/host.c @@ -20,6 +20,7 @@ */ #include <linux/kernel.h> +#include <linux/io.h> #include <linux/usb.h> #include <linux/usb/hcd.h> #include <linux/usb/chipidea.h> -- 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