diff options
author | Rob Herring <robh@kernel.org> | 2023-04-11 01:26:38 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-04-20 10:12:29 +0200 |
commit | 091b813d3d1078afba6ed74fa8df2a5bbc9bf124 (patch) | |
tree | 4e46e72d9121e86e525eda09243e649ee80f38db /drivers/usb/dwc3/dwc3-am62.c | |
parent | usb: gadget: tegra-xudc: Remove unneeded return variable (diff) | |
download | linux-091b813d3d1078afba6ed74fa8df2a5bbc9bf124.tar.xz linux-091b813d3d1078afba6ed74fa8df2a5bbc9bf124.zip |
usb: Add explicit of.h of_platform.h include
Several USB drivers use of_platform_* functions which are declared in
of_platform.h. of_platform.h gets implicitly included by of_device.h,
but that is going to be removed soon. Nothing else depends on of_device.h
so it can be dropped.
Acked-by: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Acked-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230410232639.1561152-1-robh@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/dwc3/dwc3-am62.c')
-rw-r--r-- | drivers/usb/dwc3/dwc3-am62.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-am62.c b/drivers/usb/dwc3/dwc3-am62.c index b22fb78bc8e7..cda9458c809b 100644 --- a/drivers/usb/dwc3/dwc3-am62.c +++ b/drivers/usb/dwc3/dwc3-am62.c @@ -11,7 +11,7 @@ #include <linux/platform_device.h> #include <linux/mfd/syscon.h> #include <linux/of.h> -#include <linux/of_device.h> +#include <linux/of_platform.h> #include <linux/pm_runtime.h> #include <linux/clk.h> #include <linux/regmap.h> |