mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
d646960f79
This patch is an initial implementation for the NFC Logical Link Control protocol. It's also known as NFC peer to peer mode. This is a basic implementation as it lacks SDP (services Discovery Protocol), frames aggregation support, and frame rejecion parsing. Follow up patches will implement those missing features. This code has been tested against a Nexus S phone implementing LLCP 1.0. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
20 lines
418 B
Plaintext
20 lines
418 B
Plaintext
#
|
|
# NFC sybsystem configuration
|
|
#
|
|
|
|
menuconfig NFC
|
|
depends on NET && EXPERIMENTAL
|
|
tristate "NFC subsystem support (EXPERIMENTAL)"
|
|
default n
|
|
help
|
|
Say Y here if you want to build support for NFC (Near field
|
|
communication) devices.
|
|
|
|
To compile this support as a module, choose M here: the module will
|
|
be called nfc.
|
|
|
|
source "net/nfc/nci/Kconfig"
|
|
source "net/nfc/llcp/Kconfig"
|
|
|
|
source "drivers/nfc/Kconfig"
|