mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
9b27105b4a
Add CAIF Serial driver. This driver is implemented as a line discipline. caif_serial uses the following module parameters: ser_use_stx - specifies if STart of frame eXtension is in use. ser_loop - sets the interface in loopback mode. Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
295 B
Makefile
13 lines
295 B
Makefile
ifeq ($(CONFIG_CAIF_DEBUG),1)
|
|
CAIF_DBG_FLAGS := -DDEBUG
|
|
endif
|
|
|
|
KBUILD_EXTRA_SYMBOLS=net/caif/Module.symvers
|
|
|
|
ccflags-y := $(CAIF_FLAGS) $(CAIF_DBG_FLAGS)
|
|
clean-dirs:= .tmp_versions
|
|
clean-files:= Module.symvers modules.order *.cmd *~ \
|
|
|
|
# Serial interface
|
|
obj-$(CONFIG_CAIF_TTY) += caif_serial.o
|