diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-08-06 15:34:31 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-04-21 16:00:59 +0300 |
commit | e8e77e97507bf3ec5419b8067d242b538cf75cba (patch) | |
tree | f0504d4b1bbbdf3c216f9f08dd63f2a7bb219f1c /drivers/usb/host/ohci-omap.c | |
parent | cc81e344809cc9aab581f14398facd7104e63e80 (diff) | |
download | linux-e8e77e97507bf3ec5419b8067d242b538cf75cba.tar.xz |
ARM: omap1: move mach/usb.h to include/linux/soc
The register definitions in this header are used in at least four
different places, with little hope of completely cleaning that up.
Split up the file into a portion that becomes a linux-wide header
under include/linux/soc/ti/, and the parts that are actually only
needed by board files.
Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/usb/host/ohci-omap.c')
-rw-r--r-- | drivers/usb/host/ohci-omap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c index 45dcf8292072..7be1ffefc40e 100644 --- a/drivers/usb/host/ohci-omap.c +++ b/drivers/usb/host/ohci-omap.c @@ -25,6 +25,8 @@ #include <linux/module.h> #include <linux/usb/otg.h> #include <linux/platform_device.h> +#include <linux/platform_data/usb-omap1.h> +#include <linux/soc/ti/omap1-usb.h> #include <linux/signal.h> #include <linux/usb.h> #include <linux/usb/hcd.h> @@ -37,8 +39,6 @@ #include <mach/mux.h> #include <mach/hardware.h> -#include <mach/usb.h> - #define DRIVER_DESC "OHCI OMAP driver" |