mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
c04c674fad
Add driver for Samsung S3FWRN5 NFC controller. S3FWRN5 is using NCI protocol and I2C communication interface. Signed-off-by: Robert Baldyga <r.baldyga@samsung.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
11 lines
238 B
Makefile
11 lines
238 B
Makefile
#
|
|
# Makefile for Samsung S3FWRN5 NFC driver
|
|
#
|
|
|
|
s3fwrn5-objs = core.o firmware.o nci.o
|
|
s3fwrn5_i2c-objs = i2c.o
|
|
|
|
obj-$(CONFIG_NFC_S3FWRN5) += s3fwrn5.o
|
|
obj-$(CONFIG_NFC_S3FWRN5_I2C) += s3fwrn5_i2c.o
|
|
|
|
ccflags-$(CONFIG_NFC_DEBUG) := -DDEBUG
|