We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 676b56a commit 985e038Copy full SHA for 985e038
drivers/flash/Kconfig.numaker_rmc
@@ -8,6 +8,7 @@ config SOC_FLASH_NUMAKER_RMC
8
default y
9
select FLASH_HAS_PAGE_LAYOUT
10
select FLASH_HAS_DRIVER_ENABLED
11
+ select FLASH_HAS_NO_EXPLICIT_ERASE
12
select HAS_NUMAKER_RMC
13
depends on DT_HAS_NUVOTON_NUMAKER_RMC_ENABLED
14
help
drivers/flash/soc_flash_numaker_rmc.c
@@ -29,6 +29,9 @@ struct flash_numaker_data {
29
static const struct flash_parameters flash_numaker_parameters = {
30
.write_block_size = SOC_NV_FLASH_WRITE_BLOCK_SIZE,
31
.erase_value = 0xff,
32
+ .caps = {
33
+ .no_explicit_erase = true,
34
+ },
35
};
36
37
/* Validate offset and length */
0 commit comments