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
|
||
|
|