diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-08-05 07:59:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-07 00:33:41 -0400 |
commit | 125c29820252bfa5bf8081e75618e4ee7e9487da (patch) | |
tree | 83f2af92634ffaab1da565a9eeb177ec656d0879 /net/sctp/outqueue.c | |
parent | 233e7936c84b7d7dd90c10e2ba27abb5ab42956f (diff) |
sctp: remove the typedef sctp_retransmit_reason_t
This patch is to remove the typedef sctp_retransmit_reason_t, and
replace with enum sctp_retransmit_reason 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/outqueue.c')
-rw-r--r-- | net/sctp/outqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c index d2a8adfd4a6f..08ee0ed9a0c6 100644 --- a/net/sctp/outqueue.c +++ b/net/sctp/outqueue.c | |||
@@ -534,7 +534,7 @@ void sctp_retransmit_mark(struct sctp_outq *q, | |||
534 | * one packet out. | 534 | * one packet out. |
535 | */ | 535 | */ |
536 | void sctp_retransmit(struct sctp_outq *q, struct sctp_transport *transport, | 536 | void sctp_retransmit(struct sctp_outq *q, struct sctp_transport *transport, |
537 | sctp_retransmit_reason_t reason) | 537 | enum sctp_retransmit_reason reason) |
538 | { | 538 | { |
539 | struct net *net = sock_net(q->asoc->base.sk); | 539 | struct net *net = sock_net(q->asoc->base.sk); |
540 | 540 | ||