| summaryrefslogtreecommitdiff |
Side-by-side diff
Diffstat (limited to 'patches.fixes/omap-usb-host-include-plat-cpu-h') (more/less context) (ignore whitespace changes)
| -rw-r--r-- | patches.fixes/omap-usb-host-include-plat-cpu-h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/patches.fixes/omap-usb-host-include-plat-cpu-h b/patches.fixes/omap-usb-host-include-plat-cpu-h new file mode 100644 index 0000000..102f8bb --- a/dev/null +++ b/patches.fixes/omap-usb-host-include-plat-cpu-h @@ -0,0 +1,23 @@ +From: Jeff Mahoney <jeffm@suse.com> +Subject: omap-usb-host: include <plat/cpu.h> +Patch-mainline: Submitted 2 May 2012 + +omap-usb-host calls cpu_is_omap3430, which is defined in plat/cpu.h. + +Reported-by: Guillaume GARDET <guillaume.gardet@opensuse.org> +Signed-off-by: Jeff Mahoney <jeffm@suse.com> +--- + drivers/mfd/omap-usb-host.c | 1 + + 1 file changed, 1 insertion(+) + +--- a/drivers/mfd/omap-usb-host.c ++++ b/drivers/mfd/omap-usb-host.c +@@ -26,6 +26,7 @@ + #include <linux/dma-mapping.h> + #include <linux/spinlock.h> + #include <plat/usb.h> ++#include <plat/cpu.h> + #include <linux/pm_runtime.h> + + #define USBHS_DRIVER_NAME "usbhs_omap" + |