Commit 9dda50f4 authored by Samuel Ortiz's avatar Samuel Ortiz Committed by John W. Linville

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: default avatarSamuel Ortiz <sameo@linux.intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 0c318359
...@@ -152,6 +152,8 @@ int nfc_llcp_parse_tlv(struct nfc_llcp_local *local, ...@@ -152,6 +152,8 @@ int nfc_llcp_parse_tlv(struct nfc_llcp_local *local,
case LLCP_TLV_RW: case LLCP_TLV_RW:
local->remote_rw = llcp_tlv_rw(tlv); local->remote_rw = llcp_tlv_rw(tlv);
break; break;
case LLCP_TLV_SN:
break;
default: default:
pr_err("Invalid gt tlv value 0x%x\n", type); pr_err("Invalid gt tlv value 0x%x\n", type);
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment