1 #
2 # Makefile for the kernel i2c bus driver.
3 #
4
5 O_TARGET := i2c.o
6
7 export-objs := i2c-core.o i2c-algo-bit.o i2c-algo-pcf.o
8
9 obj-$(CONFIG_I2C) += i2c-core.o
10 obj-$(CONFIG_I2C_CHARDEV) += i2c-dev.o
11 obj-$(CONFIG_I2C_ALGOBIT) += i2c-algo-bit.o
12 obj-$(CONFIG_I2C_PHILIPSPAR) += i2c-philips-par.o
13 obj-$(CONFIG_I2C_ELV) += i2c-elv.o
14 obj-$(CONFIG_I2C_VELLEMAN) += i2c-velleman.o
15 obj-$(CONFIG_I2C_ALGOPCF) += i2c-algo-pcf.o
16 obj-$(CONFIG_I2C_ELEKTOR) += i2c-elektor.o
17
18 # This is needed for automatic patch generation: sensors code starts here
19 # This is needed for automatic patch generation: sensors code ends here
20
21 include $(TOPDIR)/Rules.make
22
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.