303760b44a
The only part left in i2c-sensor is the VRM/VRD/VID handling code. This is in no way related to i2c, so it doesn't belong there. Move the code to hwmon, where it belongs. Note that not all hardware monitoring drivers do VRM/VRD/VID operations, so less drivers depend on hwmon-vid than there were depending on i2c-sensor. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
11 lines
205 B
Makefile
11 lines
205 B
Makefile
#
|
|
# Makefile for the i2c core.
|
|
#
|
|
|
|
obj-$(CONFIG_I2C) += i2c-core.o
|
|
obj-$(CONFIG_I2C_CHARDEV) += i2c-dev.o
|
|
obj-y += busses/ chips/ algos/
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_CORE),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|