From 9e422c3c05fdd324565049b09be27c446f9dc0ca Mon Sep 17 00:00:00 2001 From: Yuval Peress Date: Thu, 14 Jan 2021 01:29:08 -0700 Subject: Refactor CONFIG_FLASH_SIZE to CONFIG_FLASH_SIZE_BYTES In Zephyr CONFIG_FLASH_SIZE is a Kconfig value that is used throughout. The issue is that the units don't match. In Zephyr the value is in KiB instead of bytes. This refactor simply renames CONFIG_FLASH_SIZE in platform/ec to include the unit (via _BYTES). BRANCH=none BUG=b:174873770 TEST=make buildall be generated by the build instead of per board Signed-off-by: Yuval Peress Change-Id: I44bf3c7a20fcf62aaa9ae15715be78db4210f384 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2627638 Reviewed-by: Jack Rosenthal Reviewed-by: Simon Glass Reviewed-by: Tom Hughes Commit-Queue: Jack Rosenthal --- board/volteer_ish/board.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/volteer_ish/board.h') diff --git a/board/volteer_ish/board.h b/board/volteer_ish/board.h index 752ea283d5..6cc4057702 100644 --- a/board/volteer_ish/board.h +++ b/board/volteer_ish/board.h @@ -26,7 +26,7 @@ #define CONFIG_CLOCK_CRYSTAL #define CONFIG_ISH_UART_0 /* EC */ -#define CONFIG_FLASH_SIZE 0x80000 +#define CONFIG_FLASH_SIZE_BYTES 0x80000 #define CONFIG_FPU #define CONFIG_I2C #define CONFIG_I2C_CONTROLLER -- cgit v1.2.1