diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-02-25 14:55:58 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-04-06 12:52:45 +0200 |
commit | 5992f2579739c421cbdc1b6dd0054c636f376ba0 (patch) | |
tree | 3acf0f6e790ee70eeffc45ceac09b588440e36de | |
parent | 3811746ed9b48c8a538fc6a6edfe91aaf9acb76a (diff) | |
download | u-boot-5992f2579739c421cbdc1b6dd0054c636f376ba0.tar.gz |
ARM: zynq: Do not report NOR flash detection failure
With multi defconfig targeting several board configurations bug report like
below is so verbose.
Flash: ## Unknown flash on Bank 1 - Size = 0x00000000 = 0 MB
0 Bytes
Do not report that message and simply say "Flash: 0 Bytes" because most of
Zynq boards are using different type of flashes than NOR.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | include/configs/zynq-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index b1cef4d469..33fac35f6e 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -51,6 +51,7 @@ # define CONFIG_SYS_FLASH_WRITE_TOUT 5000 # define CONFIG_FLASH_SHOW_PROGRESS 10 # undef CONFIG_SYS_FLASH_EMPTY_INFO +# define CONFIG_SYS_FLASH_QUIET_TEST #endif #ifdef CONFIG_NAND_ZYNQ |