This patch (as1628) fixes a build error in the ehci-platform driver when compiled for the PowerPC architecture. The error was introduced by commit 99f91934a907df31ba878dfdd090002049dc476a (USB: EHCI: make ehci-platform a separate driver). The fix is simple; a few additional header-file #includes are needed. Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/host/ehci-platform.c | 2 ++ 1 file changed, 2 insertions(+) Index: usb-3.7/drivers/usb/host/ehci-platform.c =================================================================== --- usb-3.7.orig/drivers/usb/host/ehci-platform.c +++ usb-3.7/drivers/usb/host/ehci-platform.c @@ -19,6 +19,8 @@ * Licensed under the GNU/GPL. See COPYING for details. */ #include <linux/kernel.h> +#include <linux/hrtimer.h> +#include <linux/io.h> #include <linux/module.h> #include <linux/platform_device.h> #include <linux/usb.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