summaryrefslogtreecommitdiffstats
path: root/drivers/usb/chipidea/host.c
diff options
context:
space:
mode:
authorAlan Stern2012-11-03 17:39:27 +0100
committerGreg Kroah-Hartman2012-11-03 18:17:38 +0100
commitcdb2fac78321a8d621b5612c7ddfe96bdbe7d267 (patch)
treed901d5328f46a73b2d0c5089ed1cb6f38777ee80 /drivers/usb/chipidea/host.c
parentfix build of EHCI debug port code when USB_CHIPIDEA but !USB_EHCI_HCD (diff)
downloadkernel-qcow2-linux-cdb2fac78321a8d621b5612c7ddfe96bdbe7d267.tar.gz
kernel-qcow2-linux-cdb2fac78321a8d621b5612c7ddfe96bdbe7d267.tar.xz
kernel-qcow2-linux-cdb2fac78321a8d621b5612c7ddfe96bdbe7d267.zip
USB: EHCI: fix build error in ChipIdea host driver
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@rowland.harvard.edu> Tested-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea/host.c')
-rw-r--r--drivers/usb/chipidea/host.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/host.c b/drivers/usb/chipidea/host.c
index 30b17ae5aa22..fed97d323899 100644
--- a/drivers/usb/chipidea/host.c
+++ b/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>