diff options
Diffstat (limited to 'net/dccp/ccids/lib/tfrc.c')
-rw-r--r-- | net/dccp/ccids/lib/tfrc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/dccp/ccids/lib/tfrc.c b/net/dccp/ccids/lib/tfrc.c index 20763fa75d44..d1dfbb8de64c 100644 --- a/net/dccp/ccids/lib/tfrc.c +++ b/net/dccp/ccids/lib/tfrc.c | |||
@@ -19,12 +19,12 @@ extern void tfrc_tx_packet_history_exit(void); | |||
19 | extern int tfrc_rx_packet_history_init(void); | 19 | extern int tfrc_rx_packet_history_init(void); |
20 | extern void tfrc_rx_packet_history_exit(void); | 20 | extern void tfrc_rx_packet_history_exit(void); |
21 | 21 | ||
22 | extern int dccp_li_init(void); | 22 | extern int tfrc_li_init(void); |
23 | extern void dccp_li_exit(void); | 23 | extern void tfrc_li_exit(void); |
24 | 24 | ||
25 | static int __init tfrc_module_init(void) | 25 | static int __init tfrc_module_init(void) |
26 | { | 26 | { |
27 | int rc = dccp_li_init(); | 27 | int rc = tfrc_li_init(); |
28 | 28 | ||
29 | if (rc) | 29 | if (rc) |
30 | goto out; | 30 | goto out; |
@@ -41,7 +41,7 @@ static int __init tfrc_module_init(void) | |||
41 | out_free_tx_history: | 41 | out_free_tx_history: |
42 | tfrc_tx_packet_history_exit(); | 42 | tfrc_tx_packet_history_exit(); |
43 | out_free_loss_intervals: | 43 | out_free_loss_intervals: |
44 | dccp_li_exit(); | 44 | tfrc_li_exit(); |
45 | out: | 45 | out: |
46 | return rc; | 46 | return rc; |
47 | } | 47 | } |
@@ -50,7 +50,7 @@ static void __exit tfrc_module_exit(void) | |||
50 | { | 50 | { |
51 | tfrc_rx_packet_history_exit(); | 51 | tfrc_rx_packet_history_exit(); |
52 | tfrc_tx_packet_history_exit(); | 52 | tfrc_tx_packet_history_exit(); |
53 | dccp_li_exit(); | 53 | tfrc_li_exit(); |
54 | } | 54 | } |
55 | 55 | ||
56 | module_init(tfrc_module_init); | 56 | module_init(tfrc_module_init); |