[TCP]: Minor coding style fixup.
authorDavid S. Miller <davem@sunset.davemloft.net>
Thu, 20 Sep 2007 18:40:37 +0000 (11:40 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:52:13 +0000 (16:52 -0700)
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tcp.h

index 456983d..92049e6 100644 (file)
@@ -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;
 }