aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sctp.h
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2017-07-23 09:34:28 +0800
committerDavid S. Miller <davem@davemloft.net>2017-07-24 16:01:19 -0700
commit62e6b7e4ee244f8043c169c049d3b2c2c798cd60 (patch)
tree4dddb5a4053e851f6948bc9aa49f2484d1a6c826 /include/linux/sctp.h
parentsctp: remove the typedef sctp_cookie_param_t (diff)
downloadlinux-dev-62e6b7e4ee244f8043c169c049d3b2c2c798cd60.tar.xz
linux-dev-62e6b7e4ee244f8043c169c049d3b2c2c798cd60.zip
sctp: remove the typedef sctp_unrecognized_param_t
This patch is to remove the typedef sctp_unrecognized_param_t, and replace with struct sctp_unrecognized_param in the places where it's using this typedef. It is also to fix some indents in sctp_sf_do_unexpected_init() and sctp_sf_do_5_1B_init(). 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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sctp.h b/include/linux/sctp.h
index 9e77abda2111..c323b3e3ecdb 100644
--- a/include/linux/sctp.h
+++ b/include/linux/sctp.h
@@ -348,10 +348,10 @@ struct sctp_cookie_param {
};
/* Section 3.3.3.1 Unrecognized Parameters (8) */
-typedef struct sctp_unrecognized_param {
+struct sctp_unrecognized_param {
struct sctp_paramhdr param_hdr;
struct sctp_paramhdr unrecognized;
-} sctp_unrecognized_param_t;
+};