diff options
author | Simon Glass <sjg@chromium.org> | 2015-05-04 11:31:08 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-05-14 18:49:34 -0600 |
commit | 38068820426f08224bf3a146086a7eb380bc04f0 (patch) | |
tree | 388463839bcb079e29a09346098e527e89345002 | |
parent | d73125cb8e2e43e6476642206e0fec7c83b486c9 (diff) | |
download | u-boot-imx-38068820426f08224bf3a146086a7eb380bc04f0.zip u-boot-imx-38068820426f08224bf3a146086a7eb380bc04f0.tar.gz u-boot-imx-38068820426f08224bf3a146086a7eb380bc04f0.tar.bz2 |
sandbox: Add missing errno.h includes in a few files
These files use error numbering, so add the include.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/sandbox/cpu/start.c | 1 | ||||
-rw-r--r-- | drivers/misc/i2c_eeprom_emul.c | 1 | ||||
-rw-r--r-- | drivers/misc/swap_case.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c index b23d08b..4c38fab 100644 --- a/arch/sandbox/cpu/start.c +++ b/arch/sandbox/cpu/start.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <errno.h> #include <os.h> #include <cli.h> #include <malloc.h> diff --git a/drivers/misc/i2c_eeprom_emul.c b/drivers/misc/i2c_eeprom_emul.c index 7343445..4410d03 100644 --- a/drivers/misc/i2c_eeprom_emul.c +++ b/drivers/misc/i2c_eeprom_emul.c @@ -8,6 +8,7 @@ #include <common.h> #include <dm.h> +#include <errno.h> #include <fdtdec.h> #include <i2c.h> #include <malloc.h> diff --git a/drivers/misc/swap_case.c b/drivers/misc/swap_case.c index f6028ba..3b8aa48 100644 --- a/drivers/misc/swap_case.c +++ b/drivers/misc/swap_case.c @@ -9,6 +9,7 @@ #include <common.h> #include <dm.h> +#include <errno.h> #include <pci.h> #include <asm/test.h> #include <linux/ctype.h> |