diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-07-17 11:29:50 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-16 20:52:13 -0700 |
commit | 00987cc07e3f0f01699800cd89adf13a908cdee5 (patch) | |
tree | 4ef6dd5f025cb347a3a6acee2b7453a70ac77285 /include/linux/sctp.h | |
parent | a38905e6aa1a758af003b80f3318196eadb86dfe (diff) | |
download | linux-stable-00987cc07e3f0f01699800cd89adf13a908cdee5.tar.gz linux-stable-00987cc07e3f0f01699800cd89adf13a908cdee5.tar.bz2 linux-stable-00987cc07e3f0f01699800cd89adf13a908cdee5.zip |
sctp: remove the typedef sctp_ipv6addr_param_t
This patch is to remove the typedef sctp_ipv6addr_param_t, and replace
with struct sctp_ipv6addr_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 e42095d7ce57..6b45c8a38642 100644 --- a/include/linux/sctp.h +++ b/include/linux/sctp.h @@ -279,10 +279,10 @@ struct sctp_ipv4addr_param { }; /* Section 3.3.2.1. IPv6 Address Parameter (6) */ -typedef struct sctp_ipv6addr_param { +struct sctp_ipv6addr_param { struct sctp_paramhdr param_hdr; struct in6_addr addr; -} sctp_ipv6addr_param_t; +}; /* Section 3.3.2.1 Cookie Preservative (9) */ typedef struct sctp_cookie_preserve_param { |