diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-04 16:53:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-04 16:54:01 -0400 |
commit | b8e09898919e23c5d7f1934be7bf9a3a6f0deb0e (patch) | |
tree | ba1c168b729947aec2a487791e5a26ce72da4282 /post/drivers/flash.c | |
parent | 62e6418031bed3671e57e63d49273e2739a82589 (diff) | |
parent | 78475d2572615471d3c047e61481a68859d0dd7f (diff) |
Merge branch '2022-08-04-Kconfig-migrations'
- Further migrations to Kconfig and associated dead code removal.
Diffstat (limited to 'post/drivers/flash.c')
-rw-r--r-- | post/drivers/flash.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/post/drivers/flash.c b/post/drivers/flash.c index 07eab332d2..7d65f46d9f 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; |