12003375ac
There are three types of messages between w1 core and userspace: 1. Events. They are generated each time new master or slave device found either due to automatic or requested search. 2. Userspace commands. Includes read/write and search/alarm search comamnds. 3. Replies to userspace commands. From: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
18 lines
312 B
Makefile
18 lines
312 B
Makefile
#
|
|
# Makefile for the Dallas's 1-wire bus.
|
|
#
|
|
|
|
ifeq ($(CONFIG_CONNECTOR), n)
|
|
EXTRA_CFLAGS += -DNETLINK_DISABLED
|
|
endif
|
|
|
|
ifeq ($(CONFIG_W1_DS2433_CRC), y)
|
|
EXTRA_CFLAGS += -DCONFIG_W1_F23_CRC
|
|
endif
|
|
|
|
obj-$(CONFIG_W1) += wire.o
|
|
wire-objs := w1.o w1_int.o w1_family.o w1_netlink.o w1_io.o
|
|
|
|
obj-y += masters/ slaves/
|
|
|