diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-08-11 05:23:50 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-11 20:02:44 +0300 |
commit | b7ef2618a0bf75c1e480b05739b0c5f2a42081cd (patch) | |
tree | 48a2a8cd659d20232f307af55d935524e3026dc8 /include/net/sctp/structs.h | |
parent | d38ef5ae35b0960f3219f1cf0203e19819e757c7 (diff) | |
download | linux-b7ef2618a0bf75c1e480b05739b0c5f2a42081cd.tar.xz |
sctp: remove the typedef sctp_socket_type_t
This patch is to remove the typedef sctp_socket_type_t, and
replace with enum sctp_socket_type 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/structs.h')
-rw-r--r-- | include/net/sctp/structs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index b6d75b37f84d..0477945de1a3 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -150,18 +150,18 @@ extern struct sctp_globals { #define sctp_checksum_disable (sctp_globals.checksum_disable) /* SCTP Socket type: UDP or TCP style. */ -typedef enum { +enum sctp_socket_type { SCTP_SOCKET_UDP = 0, SCTP_SOCKET_UDP_HIGH_BANDWIDTH, SCTP_SOCKET_TCP -} sctp_socket_type_t; +}; /* Per socket SCTP information. */ struct sctp_sock { /* inet_sock has to be the first member of sctp_sock */ struct inet_sock inet; /* What kind of a socket is this? */ - sctp_socket_type_t type; + enum sctp_socket_type type; /* PF_ family specific functions. */ struct sctp_pf *pf; |