Преглед изворни кода

[TCP]: Minor coding style fixup.

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller пре 17 година
родитељ
комит
0800f17026
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      include/net/tcp.h

+ 4 - 2
include/net/tcp.h

@@ -1067,14 +1067,16 @@ static inline void tcp_mib_init(void)
 }
 
 /* from STCP */
-static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp) {
+static inline void tcp_clear_retrans_hints_partial(struct tcp_sock *tp)
+{
 	tp->lost_skb_hint = NULL;
 	tp->scoreboard_skb_hint = NULL;
 	tp->retransmit_skb_hint = NULL;
 	tp->forward_skb_hint = NULL;
 }
 
-static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp) {
+static inline void tcp_clear_all_retrans_hints(struct tcp_sock *tp)
+{
 	tcp_clear_retrans_hints_partial(tp);
 	tp->fastpath_skb_hint = NULL;
 }