diff options
author | Igor Prusov <ivprusov@salutedevices.com> | 2023-11-14 14:02:56 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-28 16:19:06 -0500 |
commit | e515a2bb1a9cb8a563b74337f16018d4989ef105 (patch) | |
tree | a147220eddfa70027872c3b7ab8ce23f1569d0e4 /drivers/usb/dwc3/dwc3-meson-gxl.c | |
parent | d26db04db1731362ace35c13e6effdffd7f831b7 (diff) |
treewide: Include linux/io.h instead of asm-generic/io.h
Directly including asm-generic/io.h may break build because it will
cause redefenition of generic io macros if linux/io.h gets included
later, hence replace it with direct include of linux/io.h
Signed-off-by: Igor Prusov <ivprusov@salutedevices.com>
Diffstat (limited to 'drivers/usb/dwc3/dwc3-meson-gxl.c')
-rw-r--r-- | drivers/usb/dwc3/dwc3-meson-gxl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-meson-gxl.c b/drivers/usb/dwc3/dwc3-meson-gxl.c index d56f2747b6..cbe8aaa005 100644 --- a/drivers/usb/dwc3/dwc3-meson-gxl.c +++ b/drivers/usb/dwc3/dwc3-meson-gxl.c @@ -8,12 +8,12 @@ #define DEBUG #include <common.h> -#include <asm-generic/io.h> #include <dm.h> #include <dm/device-internal.h> #include <dm/lists.h> #include <dwc3-uboot.h> #include <generic-phy.h> +#include <linux/io.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> #include <malloc.h> |