51c3711704
i2c-algo-sibyte: Merge into i2c-sibyte Merge i2c-algo-sibyte into i2c-sibyte, as this is a complete, hardware-dependent SMBus implementation and not a reusable algorithm. Perform some basic coding style cleanups while we're here (mainly space-based indentation replaced by tabulations.) Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14 lines
325 B
Makefile
14 lines
325 B
Makefile
#
|
|
# Makefile for the i2c algorithms
|
|
#
|
|
|
|
obj-$(CONFIG_I2C_ALGOBIT) += i2c-algo-bit.o
|
|
obj-$(CONFIG_I2C_ALGOPCF) += i2c-algo-pcf.o
|
|
obj-$(CONFIG_I2C_ALGOPCA) += i2c-algo-pca.o
|
|
obj-$(CONFIG_I2C_ALGOITE) += i2c-algo-ite.o
|
|
obj-$(CONFIG_I2C_ALGO_SGI) += i2c-algo-sgi.o
|
|
|
|
ifeq ($(CONFIG_I2C_DEBUG_ALGO),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|