summaryrefslogtreecommitdiffstats
path: root/include/net/nfc
diff options
context:
space:
mode:
authorChristophe Ricard <christophe.ricard@gmail.com>2015-03-31 08:02:19 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2015-04-06 00:18:29 +0200
commit0fc4a1291aeef338593e44e5396559df27f0bfdf (patch)
tree2eea23f61d7ebc6cb3bd9d80de54fa17d77c9dc6 /include/net/nfc
parent0b040964a01ccfd880207ddc498e55e6c990a5d5 (diff)
downloadlinux-0fc4a1291aeef338593e44e5396559df27f0bfdf.tar.gz
linux-0fc4a1291aeef338593e44e5396559df27f0bfdf.tar.xz
nfc: Reduce nfc_evt_transaction params length to 0
According to etsi 102 622 chapter 11.2.2.4 EVT_TRANSACTION, the nfc_evt_transaction parameters can be 0 up to 255 byte long. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/net/nfc')
-rw-r--r--include/net/nfc/nfc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/nfc/nfc.h b/include/net/nfc/nfc.h
index 73190e65d5c1..7ac029c07546 100644
--- a/include/net/nfc/nfc.h
+++ b/include/net/nfc/nfc.h
@@ -157,7 +157,7 @@ struct nfc_evt_transaction {
u32 aid_len;
u8 aid[NFC_MAX_AID_LENGTH];
u8 params_len;
- u8 params[NFC_MAX_PARAMS_LENGTH];
+ u8 params[0];
} __packed;
struct nfc_genl_data {