diff options
author | Tom Rini <trini@konsulko.com> | 2022-07-23 13:05:03 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-04 16:18:47 -0400 |
commit | 17ead040d402c6e1fe26ac5acc4773146c8a0918 (patch) | |
tree | 9bfa97577dc86a0947a2d07b455dbd6b0638ed21 /board/atmel | |
parent | 1d3ecdac7ecd5d9b237067b0c96aa1e618c8621d (diff) | |
download | u-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.tar.gz u-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.tar.bz2 u-boot-17ead040d402c6e1fe26ac5acc4773146c8a0918.zip |
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 'board/atmel')
-rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index c3e1734dda..86b4050c4c 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -7,7 +7,6 @@ #include <common.h> #include <debug_uart.h> -#include <flash.h> #include <init.h> #include <net.h> #include <vsprintf.h> @@ -140,7 +139,7 @@ static void at91sam9263ek_lcd_hw_init(void) #include <version.h> #ifdef CONFIG_MTD_NOR_FLASH -extern flash_info_t flash_info[]; +#include <flash.h> #endif void lcd_show_board_info(void) |