diff options
author | Jason Liu <r64343@freescale.com> | 2013-09-24 15:33:15 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2013-09-25 13:42:01 +0800 |
commit | 3328e2b9d8a74f7348a959650cfbad4e63b8eed6 (patch) | |
tree | 23c5fca4552af31545d7ae427ad3d2302b9c147f | |
parent | 54ee963fc2d18c23cdd49bfc84b5ddc00ac1a82c (diff) | |
download | u-boot-imx-3328e2b9d8a74f7348a959650cfbad4e63b8eed6.zip u-boot-imx-3328e2b9d8a74f7348a959650cfbad4e63b8eed6.tar.gz u-boot-imx-3328e2b9d8a74f7348a959650cfbad4e63b8eed6.tar.bz2 |
ENGR00280959 configs/mx6qsabre_common: correctify the sector size for SPI-NOR
Correctify the sector size for the SPI-NOR flash on the board, it should be 64KB
Signed-off-by: Jason Liu <r64343@freescale.com>
-rw-r--r-- | include/configs/mx6qsabre_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6qsabre_common.h b/include/configs/mx6qsabre_common.h index 0396896..5f4fe20 100644 --- a/include/configs/mx6qsabre_common.h +++ b/include/configs/mx6qsabre_common.h @@ -337,7 +337,7 @@ #define CONFIG_ENV_OFFSET (6 * 64 * 1024) #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH) #define CONFIG_ENV_OFFSET (768 * 1024) -#define CONFIG_ENV_SECT_SIZE (8 * 1024) +#define CONFIG_ENV_SECT_SIZE (64 * 1024) #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS #define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE |