diff options
| author | Simon Glass <[email protected]> | 2020-05-10 11:40:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-05-18 21:19:23 -0400 |
| commit | c05ed00afb95fa5237f16962fccf5810437317bf (patch) | |
| tree | 19bb43dd3c7d12205fffb104db7c799d0a37af9f /drivers/usb/phy | |
| parent | 07e1114671c8b13d1bb90548a3c5ea31c49415d1 (diff) | |
common: Drop linux/delay.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/usb/phy')
| -rw-r--r-- | drivers/usb/phy/omap_usb_phy.c | 1 | ||||
| -rw-r--r-- | drivers/usb/phy/rockchip_usb2_phy.c | 1 | ||||
| -rw-r--r-- | drivers/usb/phy/twl4030.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/phy/omap_usb_phy.c b/drivers/usb/phy/omap_usb_phy.c index 9209942430a..be733f39b23 100644 --- a/drivers/usb/phy/omap_usb_phy.c +++ b/drivers/usb/phy/omap_usb_phy.c @@ -11,6 +11,7 @@ #include <common.h> #include <usb.h> #include <dm/device_compat.h> +#include <linux/delay.h> #include <linux/errno.h> #include <asm/omap_common.h> #include <asm/arch/cpu.h> diff --git a/drivers/usb/phy/rockchip_usb2_phy.c b/drivers/usb/phy/rockchip_usb2_phy.c index 24ea8d8c312..6a60523e0f8 100644 --- a/drivers/usb/phy/rockchip_usb2_phy.c +++ b/drivers/usb/phy/rockchip_usb2_phy.c @@ -7,6 +7,7 @@ #include <hang.h> #include <log.h> #include <asm/io.h> +#include <linux/delay.h> #include "../gadget/dwc2_udc_otg_priv.h" diff --git a/drivers/usb/phy/twl4030.c b/drivers/usb/phy/twl4030.c index d2945d1417b..676868bead3 100644 --- a/drivers/usb/phy/twl4030.c +++ b/drivers/usb/phy/twl4030.c @@ -24,6 +24,7 @@ */ #include <twl4030.h> +#include <linux/delay.h> /* Defines for bits in registers */ #define OPMODE_MASK (3 << 3) |
