diff options
| author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:11 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2020-05-18 21:19:23 -0400 |
| commit | c05ed00afb95fa5237f16962fccf5810437317bf (patch) | |
| tree | 19bb43dd3c7d12205fffb104db7c799d0a37af9f /drivers/video/bridge | |
| parent | 07e1114671c8b13d1bb90548a3c5ea31c49415d1 (diff) | |
| download | u-boot-c05ed00afb95fa5237f16962fccf5810437317bf.tar.gz u-boot-c05ed00afb95fa5237f16962fccf5810437317bf.tar.xz u-boot-c05ed00afb95fa5237f16962fccf5810437317bf.zip | |
common: Drop linux/delay.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/bridge')
| -rw-r--r-- | drivers/video/bridge/anx6345.c | 1 | ||||
| -rw-r--r-- | drivers/video/bridge/ps862x.c | 1 | ||||
| -rw-r--r-- | drivers/video/bridge/video-bridge-uclass.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/bridge/anx6345.c b/drivers/video/bridge/anx6345.c index 6a30a5e6a6..1c5270ff05 100644 --- a/drivers/video/bridge/anx6345.c +++ b/drivers/video/bridge/anx6345.c @@ -10,6 +10,7 @@ #include <edid.h> #include <log.h> #include <video_bridge.h> +#include <linux/delay.h> #include "../anx98xx-edp.h" #define DP_MAX_LINK_RATE 0x001 diff --git a/drivers/video/bridge/ps862x.c b/drivers/video/bridge/ps862x.c index 52e7d697ec..8399c6f74c 100644 --- a/drivers/video/bridge/ps862x.c +++ b/drivers/video/bridge/ps862x.c @@ -10,6 +10,7 @@ #include <i2c.h> #include <log.h> #include <video_bridge.h> +#include <linux/delay.h> #include <power/regulator.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/drivers/video/bridge/video-bridge-uclass.c b/drivers/video/bridge/video-bridge-uclass.c index bd6635ecf5..389b02cdcb 100644 --- a/drivers/video/bridge/video-bridge-uclass.c +++ b/drivers/video/bridge/video-bridge-uclass.c @@ -10,6 +10,7 @@ #include <edid.h> #include <log.h> #include <video_bridge.h> +#include <linux/delay.h> int video_bridge_set_backlight(struct udevice *dev, int percent) { |
