aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc/llcp/llcp.h
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2013-02-21 19:12:28 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2013-03-10 17:20:05 -0400
commite4306bec47fc02178c612879c848d3a6544424dd (patch)
treeaa016b0098a8977456992f6814080bd67d1b3776 /net/nfc/llcp/llcp.h
parent63cd353c34a08af2d1935f8d0c2b6b091714ff79 (diff)
NFC: llcp: Rename socket rw and miu fields
They really are remote peer parameters, and we need to distinguish them from the local ones as we'll modify the latter with socket options. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'net/nfc/llcp/llcp.h')
-rw-r--r--net/nfc/llcp/llcp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/nfc/llcp/llcp.h b/net/nfc/llcp/llcp.h
index 0eae5c509504..32cec81939e6 100644
--- a/net/nfc/llcp/llcp.h
+++ b/net/nfc/llcp/llcp.h
@@ -104,8 +104,10 @@ struct nfc_llcp_sock {
104 u8 dsap; 104 u8 dsap;
105 char *service_name; 105 char *service_name;
106 size_t service_name_len; 106 size_t service_name_len;
107 u8 rw; 107
108 u16 miu; 108 /* Remote link parameters */
109 u8 remote_rw;
110 u16 remote_miu;
109 111
110 /* Link variables */ 112 /* Link variables */
111 u8 send_n; 113 u8 send_n;