diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2016-03-09 15:18:13 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-26 18:49:28 -0400 |
commit | 9ecb0c416c68d3105bc9b6607bc8601cab2ecf35 (patch) | |
tree | 049e372d9109963019def79dceebaf24d8713c2e /include/flash.h | |
parent | f9d0fd8a566f78f27a510258c34b3526f9822e92 (diff) | |
download | u-boot-9ecb0c416c68d3105bc9b6607bc8601cab2ecf35.tar.gz |
stm32: stm32f4: move flash driver to mtd driver location
Same flash driver can be used by other stm32 families like stm32f7.
Better place for this driver would be mtd driver location.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/flash.h b/include/flash.h index f53ace7889..c6321a02ef 100644 --- a/include/flash.h +++ b/include/flash.h @@ -465,7 +465,7 @@ extern flash_info_t *flash_get_info(ulong base); #define FLASH_S29GL064M 0x00F0 /* Spansion S29GL064M-R6 */ #define FLASH_S29GL128N 0x00F1 /* Spansion S29GL128N */ -#define FLASH_STM32F4 0x00F2 /* STM32F4 Embedded Flash */ +#define FLASH_STM32 0x00F2 /* STM32 Embedded Flash */ #define FLASH_STM32F1 0x00F3 /* STM32F1 Embedded Flash */ #define FLASH_UNKNOWN 0xFFFF /* unknown flash type */ |