Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

eeprom: Move 93cx6 eeprom driver to /drivers/misc/eeprom

Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by

Wolfram Sang and committed by
Jean Delvare
0eb6da20 e51d565f

+9 -9
-8
drivers/misc/Kconfig
··· 87 87 If you choose to build module, its name will be phantom. If unsure, 88 88 say N here. 89 89 90 - config EEPROM_93CX6 91 - tristate "EEPROM 93CX6 support" 92 - ---help--- 93 - This is a driver for the EEPROM chipsets 93c46 and 93c66. 94 - The driver supports both read as well as write commands. 95 - 96 - If unsure, say N. 97 - 98 90 config SGI_IOC4 99 91 tristate "SGI IOC4 Base IO support" 100 92 depends on PCI
-1
drivers/misc/Makefile
··· 13 13 obj-$(CONFIG_TIFM_7XX1) += tifm_7xx1.o 14 14 obj-$(CONFIG_PHANTOM) += phantom.o 15 15 obj-$(CONFIG_SGI_IOC4) += ioc4.o 16 - obj-$(CONFIG_EEPROM_93CX6) += eeprom_93cx6.o 17 16 obj-$(CONFIG_ENCLOSURE_SERVICES) += enclosure.o 18 17 obj-$(CONFIG_KGDB_TESTS) += kgdbts.o 19 18 obj-$(CONFIG_SGI_XP) += sgi-xp/
+8
drivers/misc/eeprom/Kconfig
··· 48 48 This driver can also be built as a module. If so, the module 49 49 will be called eeprom. 50 50 51 + config EEPROM_93CX6 52 + tristate "EEPROM 93CX6 support" 53 + help 54 + This is a driver for the EEPROM chipsets 93c46 and 93c66. 55 + The driver supports both read as well as write commands. 56 + 57 + If unsure, say N. 58 + 51 59 endmenu
+1
drivers/misc/eeprom/Makefile
··· 1 1 obj-$(CONFIG_AT24) += at24.o 2 2 obj-$(CONFIG_SPI_AT25) += at25.o 3 3 obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o 4 + obj-$(CONFIG_EEPROM_93CX6) += eeprom_93cx6.o
drivers/misc/eeprom_93cx6.c drivers/misc/eeprom/eeprom_93cx6.c