-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mtd: spi-nor: shorten Kconfig naming
Signed-off-by: Brian Norris <computersforpeace@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Acked-by: Huang Shijie <b32955@freescale.com>
- Loading branch information
Brian Norris
committed
Apr 14, 2014
1 parent
254592d
commit e43b206
Showing
4 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
config MTD_SPI_NOR_BASE | ||
bool "the framework for SPI-NOR support" | ||
config MTD_SPI_NOR | ||
bool "SPI-NOR device support" | ||
depends on MTD | ||
help | ||
This is the framework for the SPI NOR which can be used by the SPI | ||
device drivers and the SPI-NOR device driver. | ||
|
||
if MTD_SPI_NOR | ||
|
||
config SPI_FSL_QUADSPI | ||
tristate "Freescale Quad SPI controller" | ||
depends on ARCH_MXC && MTD_SPI_NOR_BASE | ||
depends on ARCH_MXC | ||
help | ||
This enables support for the Quad SPI controller in master mode. | ||
We only connect the NOR to this controller now. | ||
|
||
endif # MTD_SPI_NOR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
obj-$(CONFIG_MTD_SPI_NOR_BASE) += spi-nor.o | ||
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o | ||
obj-$(CONFIG_SPI_FSL_QUADSPI) += fsl-quadspi.o |