diff options
author | Tom Rini <trini@ti.com> | 2015-02-07 07:03:00 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-02-07 07:03:00 -0500 |
commit | e35c6c797888b9b4361a8cfdc3a4aecacfece74c (patch) | |
tree | f49aba7abe3486b511d378cf7f7f86fa0a581953 /tools/kwbimage.c | |
parent | 5c123f5fbfa2f7ae43f08a0f92073e90330d704a (diff) | |
download | u-boot-e35c6c797888b9b4361a8cfdc3a4aecacfece74c.zip u-boot-e35c6c797888b9b4361a8cfdc3a4aecacfece74c.tar.gz u-boot-e35c6c797888b9b4361a8cfdc3a4aecacfece74c.tar.bz2 |
kwbimage: Make the Makefile pass in CONFIG_SYS_SPI_U_BOOT_OFFS
We can't use config.h directly as some platforms include headers that
aren't safe to use in normal Linux userland.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'tools/kwbimage.c')
-rw-r--r-- | tools/kwbimage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/kwbimage.c b/tools/kwbimage.c index 28ce1e4..de5c808 100644 --- a/tools/kwbimage.c +++ b/tools/kwbimage.c @@ -16,7 +16,6 @@ #include <image.h> #include <stdint.h> #include "kwbimage.h" -#include <config.h> #define ALIGN_SUP(x, a) (((x) + (a - 1)) & ~(a - 1)) |