9f2bc79f7d
The HDQ/1-Wire module of TI OMAP2430/3430 platforms implement the hardware protocol of the master functions of the Benchmark HDQ and the Dallas Semiconductor 1-Wire protocols. These protocols use a single wire for communication between the master (HDQ/1-Wire controller) and the slave (HDQ/1-Wire external compliant device). This patch provides the HDQ driver to suppport TI OMAP2430/3430 platforms. Signed-off-by: Madhusudhan Chikkature<madhu.cr@ti.com> Acked-by: Felipe Balbi <felipe.balbi@nokia.com> Acked-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
10 lines
312 B
Makefile
10 lines
312 B
Makefile
#
|
|
# Makefile for 1-wire bus master drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_W1_MASTER_MATROX) += matrox_w1.o
|
|
obj-$(CONFIG_W1_MASTER_DS2490) += ds2490.o
|
|
obj-$(CONFIG_W1_MASTER_DS2482) += ds2482.o
|
|
obj-$(CONFIG_W1_MASTER_DS1WM) += ds1wm.o
|
|
obj-$(CONFIG_W1_MASTER_GPIO) += w1-gpio.o
|
|
obj-$(CONFIG_HDQ_MASTER_OMAP) += omap_hdq.o
|