mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
74ded38a8e
Starting with SGI Origin machines nearly every new SGI ASIC contains an 1-Wire master. They are used for attaching One-Wire prom devices, which contain information about part numbers, revision numbers, serial number etc. and MAC addresses for ethernet interfaces. This patch adds a master driver to support this IP block. It also adds an extra field dev_id to struct w1_bus_master, which could be in used in slave drivers for creating unique device names. Signed-off-by: Thomas Bogendoerfer <tbogendoerfer@suse.de> Link: https://lore.kernel.org/r/20190831082623.15627-2-tbogendoerfer@suse.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
430 B
Makefile
15 lines
430 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# 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_MXC) += mxc_w1.o
|
|
|
|
obj-$(CONFIG_W1_MASTER_DS1WM) += ds1wm.o
|
|
obj-$(CONFIG_W1_MASTER_GPIO) += w1-gpio.o
|
|
obj-$(CONFIG_HDQ_MASTER_OMAP) += omap_hdq.o
|
|
obj-$(CONFIG_W1_MASTER_SGI) += sgi_w1.o
|