diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-06-30 11:52:14 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-01 09:08:41 -0700 |
commit | 6d85e68f4cde48f8c2fac6d9c00ca6988cf6e327 (patch) | |
tree | a2ea24cfdef416dd62f5b1549e9a4b82f63414fe /net/sctp/sm_statetable.c | |
parent | 922dbc5be2186659d2c453a53f2ae569e55b6101 (diff) | |
download | linux-6d85e68f4cde48f8c2fac6d9c00ca6988cf6e327.tar.gz linux-6d85e68f4cde48f8c2fac6d9c00ca6988cf6e327.tar.bz2 linux-6d85e68f4cde48f8c2fac6d9c00ca6988cf6e327.zip |
sctp: remove the typedef sctp_cid_t
This patch is to remove the typedef sctp_cid_t, and replace
with struct sctp_cid 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 'net/sctp/sm_statetable.c')
-rw-r--r-- | net/sctp/sm_statetable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/sm_statetable.c b/net/sctp/sm_statetable.c index 419b18ebb056..3e958c1c4b95 100644 --- a/net/sctp/sm_statetable.c +++ b/net/sctp/sm_statetable.c @@ -53,7 +53,7 @@ static const sctp_sm_table_entry_t timeout_event_table[SCTP_NUM_TIMEOUT_TYPES][SCTP_STATE_NUM_STATES]; static const sctp_sm_table_entry_t *sctp_chunk_event_lookup(struct net *net, - sctp_cid_t cid, + enum sctp_cid cid, sctp_state_t state); @@ -968,7 +968,7 @@ static const sctp_sm_table_entry_t timeout_event_table[SCTP_NUM_TIMEOUT_TYPES][S }; static const sctp_sm_table_entry_t *sctp_chunk_event_lookup(struct net *net, - sctp_cid_t cid, + enum sctp_cid cid, sctp_state_t state) { if (state > SCTP_STATE_MAX) |