diff options
| author | Emmanuel Vadot <manu@FreeBSD.org> | 2023-12-26 17:56:52 +0000 |
|---|---|---|
| committer | Emmanuel Vadot <manu@FreeBSD.org> | 2024-01-10 18:20:34 +0000 |
| commit | 950a6087ec18cd22464b3297573f54a6d9223c99 (patch) | |
| tree | 6fb7d91c0ac8713e46b737d2f56ed08e04922613 /sys/dev/usb | |
| parent | b2f0caf160993c30a0d0e3d52e8a2d03616908cd (diff) | |
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/controller/dwc3/aw_dwc3.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/controller/dwc3/dwc3.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/controller/dwc3/rk_dwc3.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/controller/generic_ehci_fdt.c | 4 | ||||
| -rw-r--r-- | sys/dev/usb/controller/generic_ohci.c | 4 | ||||
| -rw-r--r-- | sys/dev/usb/controller/generic_xhci_fdt.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/controller/musb_otg_allwinner.c | 4 | ||||
| -rw-r--r-- | sys/dev/usb/controller/usb_nop_xceiv.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/controller/xlnx_dwc3.c | 2 |
9 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/usb/controller/dwc3/aw_dwc3.c b/sys/dev/usb/controller/dwc3/aw_dwc3.c index 67331f2f1be9..802c46bdae28 100644 --- a/sys/dev/usb/controller/dwc3/aw_dwc3.c +++ b/sys/dev/usb/controller/dwc3/aw_dwc3.c @@ -47,7 +47,7 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy_usb.h> static struct ofw_compat_data compat_data[] = { { "allwinner,sun50i-h6-dwc3", 1 }, diff --git a/sys/dev/usb/controller/dwc3/dwc3.c b/sys/dev/usb/controller/dwc3/dwc3.c index e0ad19fb835f..a44c2371b891 100644 --- a/sys/dev/usb/controller/dwc3/dwc3.c +++ b/sys/dev/usb/controller/dwc3/dwc3.c @@ -66,7 +66,7 @@ #include <dev/ofw/ofw_subr.h> #include <dev/clk/clk.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy_usb.h> #endif #ifdef DEV_ACPI diff --git a/sys/dev/usb/controller/dwc3/rk_dwc3.c b/sys/dev/usb/controller/dwc3/rk_dwc3.c index b34ec4880895..b3345fb4a67b 100644 --- a/sys/dev/usb/controller/dwc3/rk_dwc3.c +++ b/sys/dev/usb/controller/dwc3/rk_dwc3.c @@ -47,7 +47,7 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy_usb.h> #include <dev/extres/syscon/syscon.h> enum rk_dwc3_type { diff --git a/sys/dev/usb/controller/generic_ehci_fdt.c b/sys/dev/usb/controller/generic_ehci_fdt.c index e88895d20664..af22d0bdef73 100644 --- a/sys/dev/usb/controller/generic_ehci_fdt.c +++ b/sys/dev/usb/controller/generic_ehci_fdt.c @@ -56,8 +56,8 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy.h> +#include <dev/phy/phy_usb.h> #include "generic_ehci.h" diff --git a/sys/dev/usb/controller/generic_ohci.c b/sys/dev/usb/controller/generic_ohci.c index b71c269cfdcd..f3a9e0481bb2 100644 --- a/sys/dev/usb/controller/generic_ohci.c +++ b/sys/dev/usb/controller/generic_ohci.c @@ -55,8 +55,8 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy.h> +#include <dev/phy/phy_usb.h> #include "generic_usb_if.h" diff --git a/sys/dev/usb/controller/generic_xhci_fdt.c b/sys/dev/usb/controller/generic_xhci_fdt.c index a5c3f190783f..66fc1ab65a23 100644 --- a/sys/dev/usb/controller/generic_xhci_fdt.c +++ b/sys/dev/usb/controller/generic_xhci_fdt.c @@ -51,7 +51,7 @@ #include <dev/ofw/ofw_bus.h> #include <dev/ofw/ofw_bus_subr.h> -#include <dev/extres/phy/phy.h> +#include <dev/phy/phy.h> #include "generic_xhci.h" diff --git a/sys/dev/usb/controller/musb_otg_allwinner.c b/sys/dev/usb/controller/musb_otg_allwinner.c index a8961bed6385..3bfe2b525138 100644 --- a/sys/dev/usb/controller/musb_otg_allwinner.c +++ b/sys/dev/usb/controller/musb_otg_allwinner.c @@ -60,8 +60,8 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy.h> +#include <dev/phy/phy_usb.h> #ifdef __arm__ #include <arm/allwinner/aw_machdep.h> diff --git a/sys/dev/usb/controller/usb_nop_xceiv.c b/sys/dev/usb/controller/usb_nop_xceiv.c index e9503a35531a..9821f4b5e92a 100644 --- a/sys/dev/usb/controller/usb_nop_xceiv.c +++ b/sys/dev/usb/controller/usb_nop_xceiv.c @@ -43,7 +43,7 @@ #include <dev/clk/clk.h> #include <dev/regulator/regulator.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy_usb.h> #include "phynode_if.h" diff --git a/sys/dev/usb/controller/xlnx_dwc3.c b/sys/dev/usb/controller/xlnx_dwc3.c index facc44823523..9b9d10e81ad8 100644 --- a/sys/dev/usb/controller/xlnx_dwc3.c +++ b/sys/dev/usb/controller/xlnx_dwc3.c @@ -49,7 +49,7 @@ #include <dev/clk/clk.h> #include <dev/hwreset/hwreset.h> -#include <dev/extres/phy/phy_usb.h> +#include <dev/phy/phy_usb.h> #include <dev/extres/syscon/syscon.h> static struct ofw_compat_data compat_data[] = { |
