diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:23:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:37 -0400 |
commit | 5d9828563f80a1319e793166974dd6003dc1d941 (patch) | |
tree | 37206c501f1bdd34d92aaabe66702b12ee3f8c99 /board/compulab/common | |
parent | c45300b0385e8c5f6be789421bd45de66fcfe1ed (diff) | |
download | u-boot-5d9828563f80a1319e793166974dd6003dc1d941.tar.gz |
arm: Include asm/setup.h explictly
Include this header where needed so we do not need to rely on common.h.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/compulab/common')
-rw-r--r-- | board/compulab/common/common.c | 1 | ||||
-rw-r--r-- | board/compulab/common/eeprom.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/compulab/common/common.c b/board/compulab/common/common.c index b25d9a20b4..bf2ac7bd7f 100644 --- a/board/compulab/common/common.c +++ b/board/compulab/common/common.c @@ -9,6 +9,7 @@ #include <common.h> #include <asm/bootm.h> #include <asm/gpio.h> +#include <asm/setup.h> #include "common.h" #include "eeprom.h" diff --git a/board/compulab/common/eeprom.c b/board/compulab/common/eeprom.c index b5f1aa61cb..bb4c9e9740 100644 --- a/board/compulab/common/eeprom.c +++ b/board/compulab/common/eeprom.c @@ -11,6 +11,7 @@ #include <i2c.h> #include <eeprom_layout.h> #include <eeprom_field.h> +#include <asm/setup.h> #include <linux/kernel.h> #include "eeprom.h" |