aboutsummaryrefslogtreecommitdiff
path: root/post
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-07-23 13:05:03 -0400
committerTom Rini <trini@konsulko.com>2022-08-04 16:18:47 -0400
commit17ead040d402c6e1fe26ac5acc4773146c8a0918 (patch)
tree9bfa97577dc86a0947a2d07b455dbd6b0638ed21 /post
parent1d3ecdac7ecd5d9b237067b0c96aa1e618c8621d (diff)
downloadu-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.zip
u-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.tar.gz
u-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.tar.bz2
Audit <flash.h> inclusion
A large number of files include <flash.h> as it used to be how various SPI flash related functions were found, or for other reasons entirely. In order to migrate some further CONFIG symbols to Kconfig we need to not include flash.h in cases where we don't have a NOR flash of some sort enabled. Furthermore, in cases where we are in common code and it doesn't make sense to try and further refactor the code itself in to new files we need to guard this inclusion. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'post')
-rw-r--r--post/drivers/flash.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/post/drivers/flash.c b/post/drivers/flash.c
index 07eab33..7d65f46 100644
--- a/post/drivers/flash.c
+++ b/post/drivers/flash.c
@@ -6,12 +6,12 @@
* Licensed under the GPL-2 or later.
*/
+#if CONFIG_POST & CONFIG_SYS_POST_FLASH
#include <common.h>
#include <malloc.h>
#include <post.h>
#include <flash.h>
-#if CONFIG_POST & CONFIG_SYS_POST_FLASH
/*
* This code will walk over the declared sectors erasing them,
@@ -30,8 +30,6 @@
# error "invalid flash block start/end"
#endif
-extern flash_info_t flash_info[];
-
static void *seed_src_data(void *ptr, ulong *old_len, ulong new_len)
{
unsigned char *p;