From: EunBong Song Date: Thu, 6 Apr 2017 04:29:23 +0000 (+0900) Subject: s5j: fix trivial typo in Kconfig X-Git-Tag: 1.1_Public_Release~614^2~131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fe2a0aad6f17b6ebe27981af6096ee0f4494e91;p=rtos%2Ftinyara.git s5j: fix trivial typo in Kconfig S5J_FLASH_SIZE and S5J_BOOTLOADER_REGION_SIZE are bytes unit, so Kconfig entries should be changed to byte-unit. Change-Id: I25ded972c5583328c0ec6d1b95455f77aecbfd15 Signed-off-by: EunBong Song --- diff --git a/os/arch/arm/src/s5j/Kconfig b/os/arch/arm/src/s5j/Kconfig index 5b299bf..6827254 100644 --- a/os/arch/arm/src/s5j/Kconfig +++ b/os/arch/arm/src/s5j/Kconfig @@ -235,8 +235,8 @@ config S5J_FLASH_MIRROR_BASE Provides mirror address mapped to Nor flash with same space config S5J_FLASH_SIZE - hex "Nor Flash size (KB)" - default 8192 + hex "Nor Flash size (Byte)" + default 0x800000 help Samsung IoT uses serial nor flash memory, set to default size @@ -245,8 +245,8 @@ config S5J_FLASH_SECTOR_SIZE default 4096 config S5J_BOOTLOADER_REGION_SIZE - hex "Boot loader region size(KB)" - default 4096 + hex "Boot loader region size (Byte)" + default 0x400000 help When smartfs initialize flash, it will be skipped. This features is used to prevent for erasing or accessing to Non smartfs region.