diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:39:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 14:53:28 -0400 |
commit | b79fdc76978515fba2c4f3b5b4f2e679c5ff1463 (patch) | |
tree | cf7b3d3cbcdd64f60a0a88edd1f921d7708aebf5 /board/gdsys | |
parent | a595a0e910960ccd4611719d5fb5c279859efaee (diff) | |
download | u-boot-b79fdc76978515fba2c4f3b5b4f2e679c5ff1463.tar.gz u-boot-b79fdc76978515fba2c4f3b5b4f2e679c5ff1463.tar.bz2 u-boot-b79fdc76978515fba2c4f3b5b4f2e679c5ff1463.zip |
common: Drop flash.h from common header
Move this uncommon header out of the common header.
Fix up some style problems in flash.h while we are here.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/gdsys')
-rw-r--r-- | board/gdsys/mpc8308/hrcon.c | 1 | ||||
-rw-r--r-- | board/gdsys/mpc8308/strider.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/gdsys/mpc8308/hrcon.c b/board/gdsys/mpc8308/hrcon.c index d1110157a2..8994c8c71b 100644 --- a/board/gdsys/mpc8308/hrcon.c +++ b/board/gdsys/mpc8308/hrcon.c @@ -6,6 +6,7 @@ #include <common.h> #include <env.h> +#include <flash.h> #include <hwconfig.h> #include <i2c.h> #include <init.h> diff --git a/board/gdsys/mpc8308/strider.c b/board/gdsys/mpc8308/strider.c index 9ba9e4278a..a12e08685b 100644 --- a/board/gdsys/mpc8308/strider.c +++ b/board/gdsys/mpc8308/strider.c @@ -6,6 +6,7 @@ #include <common.h> #include <env.h> +#include <flash.h> #include <hwconfig.h> #include <i2c.h> #include <init.h> |