···11-#22-# Miscellaneous I2C chip drivers configuration33-#44-# *** DEPRECATED! Do not add new entries! See Makefile ***55-#66-77-menu "Miscellaneous I2C Chip support"88-99-config SENSORS_TSL25501010- tristate "Taos TSL2550 ambient light sensor"1111- depends on EXPERIMENTAL1212- help1313- If you say yes here you get support for the Taos TSL25501414- ambient light sensor.1515-1616- This driver can also be built as a module. If so, the module1717- will be called tsl2550.1818-1919-endmenu
-18
drivers/i2c/chips/Makefile
···11-#22-# Makefile for miscellaneous I2C chip drivers.33-#44-# Do not add new drivers to this directory! It is DEPRECATED.55-#66-# Device drivers are better grouped according to the functionality they77-# implement rather than to the bus they are connected to. In particular:88-# * Hardware monitoring chip drivers go to drivers/hwmon99-# * RTC chip drivers go to drivers/rtc1010-# * I/O expander drivers go to drivers/gpio1111-#1212-1313-obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o1414-1515-ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)1616-EXTRA_CFLAGS += -DDEBUG1717-endif1818-
···4747 struct i2c_client *client;4848 struct mutex update_lock;49495050- unsigned int power_state : 1;5151- unsigned int operating_mode : 1;5050+ unsigned int power_state:1;5151+ unsigned int operating_mode:1;5252};53535454/*
+10
drivers/misc/Kconfig
···268268 This driver can also be built as a module. If so, the module269269 will be called isl29003.270270271271+config SENSORS_TSL2550272272+ tristate "Taos TSL2550 ambient light sensor"273273+ depends on I2C && SYSFS274274+ help275275+ If you say yes here you get support for the Taos TSL2550276276+ ambient light sensor.277277+278278+ This driver can also be built as a module. If so, the module279279+ will be called tsl2550.280280+271281config EP93XX_PWM272282 tristate "EP93xx PWM support"273283 depends on ARCH_EP93XX