]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: xhci: move xhci.h to include usb
authorJean-Jacques Hiblot <jjhiblot@ti.com>
Wed, 11 Sep 2019 09:33:46 +0000 (11:33 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Thu, 24 Oct 2019 09:28:17 +0000 (11:28 +0200)
The xhci.h header file is currently located under drivers/usb/xhci
Move it to the include/usb folder to make it available to drivers that
are not under drivers/usb/xhci

Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
14 files changed:
MAINTAINERS
drivers/usb/host/xhci-dwc3.c
drivers/usb/host/xhci-exynos5.c
drivers/usb/host/xhci-fsl.c
drivers/usb/host/xhci-mem.c
drivers/usb/host/xhci-mvebu.c
drivers/usb/host/xhci-omap.c
drivers/usb/host/xhci-pci.c
drivers/usb/host/xhci-rcar.c
drivers/usb/host/xhci-ring.c
drivers/usb/host/xhci-rockchip.c
drivers/usb/host/xhci.c
drivers/usb/phy/omap_usb_phy.c
include/usb/xhci.h [moved from drivers/usb/host/xhci.h with 100% similarity]

index a7c355c76f6f4d1976c3967701059a0122883d01..48345f895da5ef31008f8d3373c008aa6c573ec8 100644 (file)
@@ -851,6 +851,7 @@ M:  Bin Meng <bmeng.cn@gmail.com>
 S:     Maintained
 T:     git https://gitlab.denx.de/u-boot/custodians/u-boot-usb.git topic-xhci
 F:     drivers/usb/host/xhci*
+F:     include/usb/xhci.h
 
 VIDEO
 M:     Anatolij Gustschin <agust@denx.de>
index 55a1b22cf68a031bc7b6f968af23769260ccd197..c1c681ca6cf159a77ab80560d3b1aa4a03537dc2 100644 (file)
@@ -14,7 +14,7 @@
 #include <usb.h>
 #include <dwc3-uboot.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 #include <asm/io.h>
 #include <linux/usb/dwc3.h>
 #include <linux/usb/otg.h>
index c150f520bd12836e24cc8028a20d2648811ddf73..25c30c24f09a3e9d27d30850d3ea7c1e0e63c435 100644 (file)
@@ -27,7 +27,7 @@
 #include <linux/compat.h>
 #include <linux/usb/dwc3.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 /* Declare global data pointer */
 DECLARE_GLOBAL_DATA_PTR;
index c0b98a8ec71c3e0a97b996d60f8313c66f92145e..9e0c1b76e4489bc6a5c1d1365e64fe14cba539ea 100644 (file)
@@ -13,7 +13,7 @@
 #include <linux/compat.h>
 #include <linux/usb/xhci-fsl.h>
 #include <linux/usb/dwc3.h>
-#include "xhci.h"
+#include <usb/xhci.h>
 #include <fsl_errata.h>
 #include <fsl_usb.h>
 #include <dm.h>
index 84c2c3344adc1792877b6f53307ee3181e19e926..530e979bb78ebfa8dd2a422dd11803af9cba7e13 100644 (file)
@@ -21,7 +21,7 @@
 #include <asm/cache.h>
 #include <linux/errno.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 #define CACHELINE_SIZE         CONFIG_SYS_CACHELINE_SIZE
 /**
index b6c6aaf78ec5882c406425119907ff1d29bbebfa..2b871046ae6d3ca4109663153c411d74a9e95236 100644 (file)
@@ -12,7 +12,7 @@
 #include <power/regulator.h>
 #include <asm/gpio.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 struct mvebu_xhci_platdata {
        fdt_addr_t hcd_base;
index db007af37fee627cd2b8b56a98b39c00531628e4..25b195f7d1a58e41f4a14150198b6d965fc620cc 100644 (file)
@@ -19,7 +19,7 @@
 #include <linux/usb/dwc3.h>
 #include <linux/usb/xhci-omap.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 /* Declare global data pointer */
 static struct omap_xhci omap;
index b995aef997ec23c695f84e39490de30439bea8d1..c1f60da54168a014b528890e0313f6e6002c5f50 100644 (file)
@@ -9,7 +9,7 @@
 #include <dm.h>
 #include <pci.h>
 #include <usb.h>
-#include "xhci.h"
+#include <usb/xhci.h>
 
 static void xhci_pci_init(struct udevice *dev, struct xhci_hccr **ret_hccr,
                          struct xhci_hcor **ret_hcor)
index f2e91ef0feb71bec72f80ebb69b3b07fecd5597d..c4d8811343a1e1336f812d8d47cedb24b3bb6f16 100644 (file)
@@ -12,7 +12,7 @@
 #include <usb.h>
 #include <wait_bit.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 #include "xhci-rcar-r8a779x_usb3_v3.h"
 
 /* Register Offset */
index b2cfd948f813abf4f3ff3d7400f9a4f3d7655af6..119b41848715fd4074f25319828ed35f73cb707e 100644 (file)
@@ -19,7 +19,7 @@
 #include <asm/unaligned.h>
 #include <linux/errno.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 /**
  * Is this TRB a link TRB or was the last TRB the last TRB in this event ring
index e7b0dbcca5def86be72849c99f260286f32e9270..b67722fe45f5daabe89d8f063010b8e987f2752c 100644 (file)
@@ -13,7 +13,7 @@
 #include <linux/usb/dwc3.h>
 #include <power/regulator.h>
 
-#include "xhci.h"
+#include <usb/xhci.h>
 
 struct rockchip_xhci_platdata {
        fdt_addr_t hcd_base;
index b3e4dcd66fa1b611ab743fe63a39b1afa8d6f919..abd23e23fdb70c41c30539f4fccb32c6c1a4c15c 100644 (file)
@@ -28,7 +28,7 @@
 #include <asm/cache.h>
 #include <asm/unaligned.h>
 #include <linux/errno.h>
-#include "xhci.h"
+#include <usb/xhci.h>
 
 #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
index 32e5bbb8d87f11ed29c10f4363b5e3dc28aa154e..897e6f19f7853d600ef8872a02406fd5cc0f677e 100644 (file)
@@ -19,7 +19,7 @@
 #include <linux/usb/dwc3.h>
 #include <linux/usb/xhci-omap.h>
 
-#include "../host/xhci.h"
+#include <usb/xhci.h>
 
 #ifdef CONFIG_OMAP_USB3PHY1_HOST
 struct usb3_dpll_params {
similarity index 100%
rename from drivers/usb/host/xhci.h
rename to include/usb/xhci.h