aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/eeprom
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-01-26 15:19:57 -0500
committerJean Delvare <khali@linux-fr.org>2009-01-26 15:19:57 -0500
commitdd7f8dbe2b3c0611ba969cd867c10cb63d163e25 (patch)
tree3f87d94235a7b7a5248b59ab4c1c4132984f237b /drivers/misc/eeprom
parent0eb6da20681db9b5d5769d3e1aca877f4a77d8fb (diff)
eeprom: More consistent symbol names
Now that all EEPROM drivers live in the same place, let's harmonize their symbol names. Also fix eeprom's dependencies, it definitely needs sysfs, and is no longer experimental after many years in the kernel tree. Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Wolfram Sang <w.sang@pengutronix.de> Cc: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'drivers/misc/eeprom')
-rw-r--r--drivers/misc/eeprom/Kconfig8
-rw-r--r--drivers/misc/eeprom/Makefile6
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/misc/eeprom/Kconfig b/drivers/misc/eeprom/Kconfig
index 62aae334ee68..c76df8cda5ef 100644
--- a/drivers/misc/eeprom/Kconfig
+++ b/drivers/misc/eeprom/Kconfig
@@ -1,6 +1,6 @@
1menu "EEPROM support" 1menu "EEPROM support"
2 2
3config AT24 3config EEPROM_AT24
4 tristate "I2C EEPROMs from most vendors" 4 tristate "I2C EEPROMs from most vendors"
5 depends on I2C && SYSFS && EXPERIMENTAL 5 depends on I2C && SYSFS && EXPERIMENTAL
6 help 6 help
@@ -26,7 +26,7 @@ config AT24
26 This driver can also be built as a module. If so, the module 26 This driver can also be built as a module. If so, the module
27 will be called at24. 27 will be called at24.
28 28
29config SPI_AT25 29config EEPROM_AT25
30 tristate "SPI EEPROMs from most vendors" 30 tristate "SPI EEPROMs from most vendors"
31 depends on SPI && SYSFS 31 depends on SPI && SYSFS
32 help 32 help
@@ -37,9 +37,9 @@ config SPI_AT25
37 This driver can also be built as a module. If so, the module 37 This driver can also be built as a module. If so, the module
38 will be called at25. 38 will be called at25.
39 39
40config SENSORS_EEPROM 40config EEPROM_LEGACY
41 tristate "Old I2C EEPROM reader" 41 tristate "Old I2C EEPROM reader"
42 depends on I2C && EXPERIMENTAL 42 depends on I2C && SYSFS
43 help 43 help
44 If you say yes here you get read-only access to the EEPROM data 44 If you say yes here you get read-only access to the EEPROM data
45 available on modern memory DIMMs and Sony Vaio laptops via I2C. Such 45 available on modern memory DIMMs and Sony Vaio laptops via I2C. Such
diff --git a/drivers/misc/eeprom/Makefile b/drivers/misc/eeprom/Makefile
index 3b7af6df79a7..539dd8f88128 100644
--- a/drivers/misc/eeprom/Makefile
+++ b/drivers/misc/eeprom/Makefile
@@ -1,4 +1,4 @@
1obj-$(CONFIG_AT24) += at24.o 1obj-$(CONFIG_EEPROM_AT24) += at24.o
2obj-$(CONFIG_SPI_AT25) += at25.o 2obj-$(CONFIG_EEPROM_AT25) += at25.o
3obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o 3obj-$(CONFIG_EEPROM_LEGACY) += eeprom.o
4obj-$(CONFIG_EEPROM_93CX6) += eeprom_93cx6.o 4obj-$(CONFIG_EEPROM_93CX6) += eeprom_93cx6.o