mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 10:26:40 +07:00
e7c5c49ecd
The pcf8574 driver in drivers/i2c/chips which just exports its register to sysfs is superseded by drivers/gpio/pcf857x.c which properly uses the gpiolib. As this driver has been deprecated for more than a year, finally remove it. Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Cc: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Jean Delvare <khali@linux-fr.org>
20 lines
546 B
Makefile
20 lines
546 B
Makefile
#
|
|
# Makefile for miscellaneous I2C chip drivers.
|
|
#
|
|
# Do not add new drivers to this directory! It is DEPRECATED.
|
|
#
|
|
# Device drivers are better grouped according to the functionality they
|
|
# implement rather than to the bus they are connected to. In particular:
|
|
# * Hardware monitoring chip drivers go to drivers/hwmon
|
|
# * RTC chip drivers go to drivers/rtc
|
|
# * I/O expander drivers go to drivers/gpio
|
|
#
|
|
|
|
obj-$(CONFIG_DS1682) += ds1682.o
|
|
obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|