diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-08-05 13:59:56 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-07 06:33:41 +0200 |
commit | 8496561430df6e2c21b4ed37bd93604d3acaf5d6 (patch) | |
tree | 1489ea57e92e74693c3722612bf94b6ba554d458 /include/net/sctp/sctp.h | |
parent | sctp: remove the typedef sctp_transport_cmd_t (diff) | |
download | linux-8496561430df6e2c21b4ed37bd93604d3acaf5d6.tar.xz linux-8496561430df6e2c21b4ed37bd93604d3acaf5d6.zip |
sctp: remove the typedef sctp_sock_state_t
This patch is to remove the typedef sctp_sock_state_t, and
replace with enum sctp_sock_state 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/net/sctp/sctp.h')
-rw-r--r-- | include/net/sctp/sctp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index ca66b033ec38..0022bc713434 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h @@ -565,7 +565,8 @@ static inline int __sctp_state(const struct sctp_association *asoc, /* Is the socket in this state? */ #define sctp_sstate(sk, state) __sctp_sstate((sk), (SCTP_SS_##state)) -static inline int __sctp_sstate(const struct sock *sk, sctp_sock_state_t state) +static inline int __sctp_sstate(const struct sock *sk, + enum sctp_sock_state state) { return sk->sk_state == state; } |