aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2012-03-05 01:03:49 +0100
committerJohn W. Linville <linville@tuxdriver.com>2012-03-06 15:16:23 -0500
commit9dda50f4c98f84e32a5f6dc4d9dd7af6085add43 (patch)
treeab375fa392a3d615019588eede69e34a590b39a2 /net/nfc
parentNFC: Unlink LLCP child sockets from llcp_sock_release (diff)
downloadlinux-dev-9dda50f4c98f84e32a5f6dc4d9dd7af6085add43.tar.xz
linux-dev-9dda50f4c98f84e32a5f6dc4d9dd7af6085add43.zip
NFC: SN is not an invalid GT value
We just don't do anything with it when parsing the general bytes. We handle it from the CONNECT reception code. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/nfc')
-rw-r--r--net/nfc/llcp/commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/nfc/llcp/commands.c b/net/nfc/llcp/commands.c
index bfe35b8f225e..7c74b82f2161 100644
--- a/net/nfc/llcp/commands.c
+++ b/net/nfc/llcp/commands.c
@@ -152,6 +152,8 @@ int nfc_llcp_parse_tlv(struct nfc_llcp_local *local,
case LLCP_TLV_RW:
local->remote_rw = llcp_tlv_rw(tlv);
break;
+ case LLCP_TLV_SN:
+ break;
default:
pr_err("Invalid gt tlv value 0x%x\n", type);
break;