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 | |
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')
-rw-r--r-- | board/AndesTech/adp-ae3xx/adp-ae3xx.c | 1 | ||||
-rw-r--r-- | board/AndesTech/adp-ag101p/adp-ag101p.c | 1 | ||||
-rw-r--r-- | board/AndesTech/ax25-ae350/ax25-ae350.c | 1 | ||||
-rw-r--r-- | board/Arcturus/ucp1020/cmd_arc.c | 1 | ||||
-rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 1 | ||||
-rw-r--r-- | board/buffalo/lsxl/lsxl.c | 1 | ||||
-rw-r--r-- | board/cobra5272/flash.c | 2 | ||||
-rw-r--r-- | board/freescale/common/fsl_validate.c | 1 | ||||
-rw-r--r-- | board/freescale/m5253demo/flash.c | 1 | ||||
-rw-r--r-- | board/freescale/mpc8568mds/bcsr.c | 1 | ||||
-rw-r--r-- | board/freescale/mpc8568mds/mpc8568mds.c | 1 | ||||
-rw-r--r-- | board/freescale/mpc8569mds/bcsr.c | 1 | ||||
-rw-r--r-- | board/freescale/mpc8569mds/mpc8569mds.c | 1 | ||||
-rw-r--r-- | board/gardena/smart-gateway-mt7688/board.c | 1 | ||||
-rw-r--r-- | board/gdsys/mpc8308/hrcon.c | 1 | ||||
-rw-r--r-- | board/gdsys/mpc8308/strider.c | 1 | ||||
-rw-r--r-- | board/renesas/sh7752evb/sh7752evb.c | 1 | ||||
-rw-r--r-- | board/renesas/sh7753evb/sh7753evb.c | 1 | ||||
-rw-r--r-- | board/renesas/sh7757lcr/sh7757lcr.c | 1 | ||||
-rw-r--r-- | board/siemens/taurus/taurus.c | 1 | ||||
-rw-r--r-- | board/socrates/socrates.c | 1 | ||||
-rw-r--r-- | board/spear/x600/x600.c | 1 |
22 files changed, 23 insertions, 0 deletions
diff --git a/board/AndesTech/adp-ae3xx/adp-ae3xx.c b/board/AndesTech/adp-ae3xx/adp-ae3xx.c index a04415deca..8eb40bf295 100644 --- a/board/AndesTech/adp-ae3xx/adp-ae3xx.c +++ b/board/AndesTech/adp-ae3xx/adp-ae3xx.c @@ -8,6 +8,7 @@ #include <init.h> #include <asm/mach-types.h> #include <common.h> +#include <flash.h> #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) #include <netdev.h> #endif diff --git a/board/AndesTech/adp-ag101p/adp-ag101p.c b/board/AndesTech/adp-ag101p/adp-ag101p.c index faf39b4ba6..d349b19648 100644 --- a/board/AndesTech/adp-ag101p/adp-ag101p.c +++ b/board/AndesTech/adp-ag101p/adp-ag101p.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <flash.h> #include <init.h> #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) #include <netdev.h> diff --git a/board/AndesTech/ax25-ae350/ax25-ae350.c b/board/AndesTech/ax25-ae350/ax25-ae350.c index f164073000..de546dab17 100644 --- a/board/AndesTech/ax25-ae350/ax25-ae350.c +++ b/board/AndesTech/ax25-ae350/ax25-ae350.c @@ -5,6 +5,7 @@ */ #include <common.h> +#include <flash.h> #include <init.h> #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) #include <netdev.h> diff --git a/board/Arcturus/ucp1020/cmd_arc.c b/board/Arcturus/ucp1020/cmd_arc.c index b50de63c5e..2b4853f8f9 100644 --- a/board/Arcturus/ucp1020/cmd_arc.c +++ b/board/Arcturus/ucp1020/cmd_arc.c @@ -12,6 +12,7 @@ #include <cpu_func.h> #include <div64.h> #include <env.h> +#include <flash.h> #include <malloc.h> #include <spi_flash.h> #include <mmc.h> diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index b811d931c4..be132bc185 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -7,6 +7,7 @@ #include <common.h> #include <debug_uart.h> +#include <flash.h> #include <init.h> #include <net.h> #include <vsprintf.h> diff --git a/board/buffalo/lsxl/lsxl.c b/board/buffalo/lsxl/lsxl.c index 95d3a5e1f5..aa641259ac 100644 --- a/board/buffalo/lsxl/lsxl.c +++ b/board/buffalo/lsxl/lsxl.c @@ -10,6 +10,7 @@ #include <common.h> #include <env.h> #include <env_internal.h> +#include <flash.h> #include <net.h> #include <malloc.h> #include <netdev.h> diff --git a/board/cobra5272/flash.c b/board/cobra5272/flash.c index e601ed8e72..5860cd0ac0 100644 --- a/board/cobra5272/flash.c +++ b/board/cobra5272/flash.c @@ -7,7 +7,9 @@ #include <common.h> #include <console.h> #include <cpu_func.h> +#include <flash.h> #include <irq_func.h> +#include <uuid.h> #define PHYS_FLASH_1 CONFIG_SYS_FLASH_BASE #define FLASH_BANK_SIZE 0x200000 diff --git a/board/freescale/common/fsl_validate.c b/board/freescale/common/fsl_validate.c index 2bf9d58746..6aa412a937 100644 --- a/board/freescale/common/fsl_validate.c +++ b/board/freescale/common/fsl_validate.c @@ -5,6 +5,7 @@ #include <common.h> #include <dm.h> +#include <flash.h> #include <fsl_validate.h> #include <fsl_secboot_err.h> #include <fsl_sfp.h> diff --git a/board/freescale/m5253demo/flash.c b/board/freescale/m5253demo/flash.c index a5223ecee6..87368564af 100644 --- a/board/freescale/m5253demo/flash.c +++ b/board/freescale/m5253demo/flash.c @@ -8,6 +8,7 @@ */ #include <common.h> +#include <flash.h> #include <irq_func.h> #include <asm/immap.h> diff --git a/board/freescale/mpc8568mds/bcsr.c b/board/freescale/mpc8568mds/bcsr.c index 28e2a9435c..b1e638af5a 100644 --- a/board/freescale/mpc8568mds/bcsr.c +++ b/board/freescale/mpc8568mds/bcsr.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <flash.h> #include <asm/io.h> #include "bcsr.h" diff --git a/board/freescale/mpc8568mds/mpc8568mds.c b/board/freescale/mpc8568mds/mpc8568mds.c index 5167f81be7..da97495664 100644 --- a/board/freescale/mpc8568mds/mpc8568mds.c +++ b/board/freescale/mpc8568mds/mpc8568mds.c @@ -6,6 +6,7 @@ */ #include <common.h> +#include <flash.h> #include <init.h> #include <pci.h> #include <asm/processor.h> diff --git a/board/freescale/mpc8569mds/bcsr.c b/board/freescale/mpc8569mds/bcsr.c index 57cea0af68..9ed00f6e5b 100644 --- a/board/freescale/mpc8569mds/bcsr.c +++ b/board/freescale/mpc8569mds/bcsr.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <flash.h> #include <asm/io.h> #include "bcsr.h" diff --git a/board/freescale/mpc8569mds/mpc8569mds.c b/board/freescale/mpc8569mds/mpc8569mds.c index cf5d8a5244..18e0d87a48 100644 --- a/board/freescale/mpc8569mds/mpc8569mds.c +++ b/board/freescale/mpc8569mds/mpc8569mds.c @@ -7,6 +7,7 @@ #include <common.h> #include <console.h> +#include <flash.h> #include <hwconfig.h> #include <init.h> #include <pci.h> diff --git a/board/gardena/smart-gateway-mt7688/board.c b/board/gardena/smart-gateway-mt7688/board.c index 776afa43a6..89844ee69e 100644 --- a/board/gardena/smart-gateway-mt7688/board.c +++ b/board/gardena/smart-gateway-mt7688/board.c @@ -6,6 +6,7 @@ #include <common.h> #include <env.h> #include <env_internal.h> +#include <flash.h> #include <init.h> #include <led.h> #include <malloc.h> 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> diff --git a/board/renesas/sh7752evb/sh7752evb.c b/board/renesas/sh7752evb/sh7752evb.c index 203eecf3d6..135aaa5234 100644 --- a/board/renesas/sh7752evb/sh7752evb.c +++ b/board/renesas/sh7752evb/sh7752evb.c @@ -5,6 +5,7 @@ #include <common.h> #include <env.h> +#include <flash.h> #include <init.h> #include <malloc.h> #include <asm/processor.h> diff --git a/board/renesas/sh7753evb/sh7753evb.c b/board/renesas/sh7753evb/sh7753evb.c index 0b118b2f65..fbfc49ee01 100644 --- a/board/renesas/sh7753evb/sh7753evb.c +++ b/board/renesas/sh7753evb/sh7753evb.c @@ -5,6 +5,7 @@ #include <common.h> #include <env.h> +#include <flash.h> #include <init.h> #include <malloc.h> #include <asm/processor.h> diff --git a/board/renesas/sh7757lcr/sh7757lcr.c b/board/renesas/sh7757lcr/sh7757lcr.c index e8d1fdd03f..ed041b14ee 100644 --- a/board/renesas/sh7757lcr/sh7757lcr.c +++ b/board/renesas/sh7757lcr/sh7757lcr.c @@ -5,6 +5,7 @@ #include <common.h> #include <env.h> +#include <flash.h> #include <init.h> #include <malloc.h> #include <asm/processor.h> diff --git a/board/siemens/taurus/taurus.c b/board/siemens/taurus/taurus.c index 0979df563a..9f9cdfa234 100644 --- a/board/siemens/taurus/taurus.c +++ b/board/siemens/taurus/taurus.c @@ -15,6 +15,7 @@ #include <common.h> #include <dm.h> #include <env.h> +#include <flash.h> #include <init.h> #include <asm/io.h> #include <asm/arch/at91sam9260_matrix.h> diff --git a/board/socrates/socrates.c b/board/socrates/socrates.c index bd214acc80..84644a85c7 100644 --- a/board/socrates/socrates.c +++ b/board/socrates/socrates.c @@ -14,6 +14,7 @@ #include <clock_legacy.h> #include <env.h> #include <pci.h> +#include <uuid.h> #include <asm/processor.h> #include <asm/immap_85xx.h> #include <ioports.h> diff --git a/board/spear/x600/x600.c b/board/spear/x600/x600.c index e1232edd14..7cff6eecf2 100644 --- a/board/spear/x600/x600.c +++ b/board/spear/x600/x600.c @@ -7,6 +7,7 @@ */ #include <common.h> +#include <flash.h> #include <init.h> #include <micrel.h> #include <nand.h> |