diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 20:40:11 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-19 04:19:23 +0300 |
commit | c05ed00afb95fa5237f16962fccf5810437317bf (patch) | |
tree | 19bb43dd3c7d12205fffb104db7c799d0a37af9f /board/udoo | |
parent | 07e1114671c8b13d1bb90548a3c5ea31c49415d1 (diff) | |
download | u-boot-c05ed00afb95fa5237f16962fccf5810437317bf.tar.xz |
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 'board/udoo')
-rw-r--r-- | board/udoo/neo/neo.c | 1 | ||||
-rw-r--r-- | board/udoo/udoo.c | 1 | ||||
-rw-r--r-- | board/udoo/udoo_spl.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/udoo/neo/neo.c b/board/udoo/neo/neo.c index 096551b3c7..5e49180c76 100644 --- a/board/udoo/neo/neo.c +++ b/board/udoo/neo/neo.c @@ -25,6 +25,7 @@ #include <asm/mach-imx/mxc_i2c.h> #include <asm/arch/sys_proto.h> #include <spl.h> +#include <linux/delay.h> #include <linux/sizes.h> #include <common.h> #include <i2c.h> diff --git a/board/udoo/udoo.c b/board/udoo/udoo.c index 0370db67e4..4c85d99c13 100644 --- a/board/udoo/udoo.c +++ b/board/udoo/udoo.c @@ -13,6 +13,7 @@ #include <env.h> #include <malloc.h> #include <asm/arch/mx6-pins.h> +#include <linux/delay.h> #include <linux/errno.h> #include <asm/gpio.h> #include <asm/mach-imx/iomux-v3.h> diff --git a/board/udoo/udoo_spl.c b/board/udoo/udoo_spl.c index 09fc23a901..d9afbbb741 100644 --- a/board/udoo/udoo_spl.c +++ b/board/udoo/udoo_spl.c @@ -12,6 +12,7 @@ #include <asm/arch/imx-regs.h> #include <asm/arch/iomux.h> #include <asm/arch/mx6-pins.h> +#include <linux/delay.h> #include <linux/errno.h> #include <asm/gpio.h> #include <asm/mach-imx/iomux-v3.h> |