diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/Kconfig | 5 | ||||
-rw-r--r-- | drivers/mtd/st_smi.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 3a9705c..1957980 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig @@ -8,6 +8,11 @@ config MTD flash, RAM and similar chips, often used for solid state file systems on embedded devices. +config MTD_NOR_FLASH + bool "Enable parallel NOR flash support" + help + Enable support for parallel NOR flash. + config CFI_FLASH bool "Enable Driver Model for CFI Flash driver" depends on MTD diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c index 208119c..9942c8a 100644 --- a/drivers/mtd/st_smi.c +++ b/drivers/mtd/st_smi.c @@ -13,7 +13,7 @@ #include <asm/io.h> #include <asm/arch/hardware.h> -#if !defined(CONFIG_SYS_NO_FLASH) +#if defined(CONFIG_MTD_NOR_FLASH) static struct smi_regs *const smicntl = (struct smi_regs * const)CONFIG_SYS_SMI_BASE; |