diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-16 23:29:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-16 23:52:14 -0400 |
commit | 85f6bd24ac579ef0926eb4c564ba1f3c8a7f8563 (patch) | |
tree | ca69903b63bef3ed556bb81370de33de83c39a5e /include/linux/sctp.h | |
parent | c1dd5df39be5a98c843b9352c22c5569f84bec44 (diff) |
sctp: remove the typedef sctp_adaptation_ind_param_t
This patch is to remove the typedef sctp_adaptation_ind_param_t, and
replace with struct sctp_adaptation_ind_param in the places where it's
using this typedef.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/sctp.h')
-rw-r--r-- | include/linux/sctp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h index 75524829aa81..72b87874ea76 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h | |||
@@ -303,10 +303,10 @@ struct sctp_supported_addrs_param { | |||
303 | }; | 303 | }; |
304 | 304 | ||
305 | /* ADDIP Section 3.2.6 Adaptation Layer Indication */ | 305 | /* ADDIP Section 3.2.6 Adaptation Layer Indication */ |
306 | typedef struct sctp_adaptation_ind_param { | 306 | struct sctp_adaptation_ind_param { |
307 | struct sctp_paramhdr param_hdr; | 307 | struct sctp_paramhdr param_hdr; |
308 | __be32 adaptation_ind; | 308 | __be32 adaptation_ind; |
309 | } sctp_adaptation_ind_param_t; | 309 | }; |
310 | 310 | ||
311 | /* ADDIP Section 4.2.7 Supported Extensions Parameter */ | 311 | /* ADDIP Section 4.2.7 Supported Extensions Parameter */ |
312 | typedef struct sctp_supported_ext_param { | 312 | typedef struct sctp_supported_ext_param { |