diff options
| author | Andy Shevchenko <[email protected]> | 2024-05-08 14:38:09 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2024-05-10 10:36:31 +0100 |
| commit | 76d7570734c198e09f369faa35ebdacfeec3448e (patch) | |
| tree | 76a3385ce893b899912d4ddbb7e0a504ff49a89b /include/linux | |
| parent | b791a67f68121d69108640d4a3e591d210ffe850 (diff) | |
usb: phy: tegra: Replace of_gpio.h by proper one
of_gpio.h is deprecated and subject to remove.
The driver doesn't use it directly, replace it
with what is really being used.
Signed-off-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/usb/tegra_usb_phy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/usb/tegra_usb_phy.h b/include/linux/usb/tegra_usb_phy.h index 46e73584b6e6..e6c14f2b1f9b 100644 --- a/include/linux/usb/tegra_usb_phy.h +++ b/include/linux/usb/tegra_usb_phy.h @@ -7,11 +7,12 @@ #define __TEGRA_USB_PHY_H #include <linux/clk.h> -#include <linux/gpio.h> #include <linux/regmap.h> #include <linux/reset.h> #include <linux/usb/otg.h> +struct gpio_desc; + /* * utmi_pll_config_in_car_module: true if the UTMI PLL configuration registers * should be set up by clk-tegra, false if by the PHY code |