mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
89610274bd
This DS2408 w1 slave driver is not complete for all the features of the chip, but its sufficient if you use it as a simple IO expander. [randy.dunlap@oracle.com: fix w1_ds2408.c printk formats] Signed-off-by: Jean-François Dagenais <dagenaisj@sonatest.com> Cc: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Cc: Szabolcs Gyurko <szabolcs.gyurko@tlt.hu> Cc: Matt Reimer <mreimer@vpop.net> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
406 B
Makefile
13 lines
406 B
Makefile
#
|
|
# Makefile for the Dallas's 1-wire slaves.
|
|
#
|
|
|
|
obj-$(CONFIG_W1_SLAVE_THERM) += w1_therm.o
|
|
obj-$(CONFIG_W1_SLAVE_SMEM) += w1_smem.o
|
|
obj-$(CONFIG_W1_SLAVE_DS2408) += w1_ds2408.o
|
|
obj-$(CONFIG_W1_SLAVE_DS2423) += w1_ds2423.o
|
|
obj-$(CONFIG_W1_SLAVE_DS2431) += w1_ds2431.o
|
|
obj-$(CONFIG_W1_SLAVE_DS2433) += w1_ds2433.o
|
|
obj-$(CONFIG_W1_SLAVE_DS2760) += w1_ds2760.o
|
|
obj-$(CONFIG_W1_SLAVE_BQ27000) += w1_bq27000.o
|