aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/Kconfig
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2013-01-16 21:53:55 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-21 17:52:45 -0500
commit6d1f56aa5149082bb0ce6dd8d47e51a1013a206d (patch)
tree25fb9f459880f31e893d6938e937ad41c952ca75 /drivers/spi/Kconfig
parent2a570a4917cca818bc69d0789483e0a9ace79477 (diff)
drivers/spi: remove depends on CONFIG_EXPERIMENTAL
The CONFIG_EXPERIMENTAL config item has not carried much meaning for a while now and is almost always enabled by default. As agreed during the Linux kernel summit, remove it from any "depends on" lines in Kconfigs. CC: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/spi/Kconfig')
-rw-r--r--drivers/spi/Kconfig19
1 files changed, 9 insertions, 10 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig
index 2e188e1127eb..3105ea2edecc 100644
--- a/drivers/spi/Kconfig
+++ b/drivers/spi/Kconfig
@@ -88,7 +88,7 @@ config SPI_BFIN_SPORT
88 88
89config SPI_AU1550 89config SPI_AU1550
90 tristate "Au1550/Au1200/Au1300 SPI Controller" 90 tristate "Au1550/Au1200/Au1300 SPI Controller"
91 depends on MIPS_ALCHEMY && EXPERIMENTAL 91 depends on MIPS_ALCHEMY
92 select SPI_BITBANG 92 select SPI_BITBANG
93 help 93 help
94 If you say yes to this option, support will be included for the 94 If you say yes to this option, support will be included for the
@@ -188,7 +188,7 @@ config SPI_IMX
188 188
189config SPI_LM70_LLP 189config SPI_LM70_LLP
190 tristate "Parallel port adapter for LM70 eval board (DEVELOPMENT)" 190 tristate "Parallel port adapter for LM70 eval board (DEVELOPMENT)"
191 depends on PARPORT && EXPERIMENTAL 191 depends on PARPORT
192 select SPI_BITBANG 192 select SPI_BITBANG
193 help 193 help
194 This driver supports the NS LM70 LLP Evaluation Board, 194 This driver supports the NS LM70 LLP Evaluation Board,
@@ -204,7 +204,7 @@ config SPI_MPC52xx
204 204
205config SPI_MPC52xx_PSC 205config SPI_MPC52xx_PSC
206 tristate "Freescale MPC52xx PSC SPI controller" 206 tristate "Freescale MPC52xx PSC SPI controller"
207 depends on PPC_MPC52xx && EXPERIMENTAL 207 depends on PPC_MPC52xx
208 help 208 help
209 This enables using the Freescale MPC52xx Programmable Serial 209 This enables using the Freescale MPC52xx Programmable Serial
210 Controller in master SPI mode. 210 Controller in master SPI mode.
@@ -273,8 +273,8 @@ config SPI_OMAP_100K
273 OMAP SPI 100K master controller for omap7xx boards. 273 OMAP SPI 100K master controller for omap7xx boards.
274 274
275config SPI_ORION 275config SPI_ORION
276 tristate "Orion SPI master (EXPERIMENTAL)" 276 tristate "Orion SPI master"
277 depends on PLAT_ORION && EXPERIMENTAL 277 depends on PLAT_ORION
278 help 278 help
279 This enables using the SPI master controller on the Orion chips. 279 This enables using the SPI master controller on the Orion chips.
280 280
@@ -299,7 +299,7 @@ config SPI_PPC4xx
299 299
300config SPI_PXA2XX 300config SPI_PXA2XX
301 tristate "PXA2xx SSP SPI master" 301 tristate "PXA2xx SSP SPI master"
302 depends on (ARCH_PXA || (X86_32 && PCI)) && EXPERIMENTAL 302 depends on (ARCH_PXA || (X86_32 && PCI))
303 select PXA_SSP if ARCH_PXA 303 select PXA_SSP if ARCH_PXA
304 help 304 help
305 This enables using a PXA2xx or Sodaville SSP port as a SPI master 305 This enables using a PXA2xx or Sodaville SSP port as a SPI master
@@ -317,7 +317,7 @@ config SPI_RSPI
317 317
318config SPI_S3C24XX 318config SPI_S3C24XX
319 tristate "Samsung S3C24XX series SPI" 319 tristate "Samsung S3C24XX series SPI"
320 depends on ARCH_S3C24XX && EXPERIMENTAL 320 depends on ARCH_S3C24XX
321 select SPI_BITBANG 321 select SPI_BITBANG
322 help 322 help
323 SPI driver for Samsung S3C24XX series ARM SoCs 323 SPI driver for Samsung S3C24XX series ARM SoCs
@@ -432,7 +432,7 @@ config SPI_XCOMM
432 432
433config SPI_XILINX 433config SPI_XILINX
434 tristate "Xilinx SPI controller common module" 434 tristate "Xilinx SPI controller common module"
435 depends on HAS_IOMEM && EXPERIMENTAL 435 depends on HAS_IOMEM
436 select SPI_BITBANG 436 select SPI_BITBANG
437 help 437 help
438 This exposes the SPI controller IP from the Xilinx EDK. 438 This exposes the SPI controller IP from the Xilinx EDK.
@@ -444,7 +444,7 @@ config SPI_XILINX
444 444
445config SPI_NUC900 445config SPI_NUC900
446 tristate "Nuvoton NUC900 series SPI" 446 tristate "Nuvoton NUC900 series SPI"
447 depends on ARCH_W90X900 && EXPERIMENTAL 447 depends on ARCH_W90X900
448 select SPI_BITBANG 448 select SPI_BITBANG
449 help 449 help
450 SPI driver for Nuvoton NUC900 series ARM SoCs 450 SPI driver for Nuvoton NUC900 series ARM SoCs
@@ -478,7 +478,6 @@ comment "SPI Protocol Masters"
478 478
479config SPI_SPIDEV 479config SPI_SPIDEV
480 tristate "User mode SPI device driver support" 480 tristate "User mode SPI device driver support"
481 depends on EXPERIMENTAL
482 help 481 help
483 This supports user mode SPI protocol drivers. 482 This supports user mode SPI protocol drivers.
484 483