batman-adv: Fix "line over 80 characters" checkpatch warning
authorSven Eckelmann <sven@narfation.org>
Thu, 28 Sep 2017 15:16:51 +0000 (17:16 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Thu, 28 Sep 2017 15:20:45 +0000 (17:20 +0200)
Fixes: 242c1a28eb61 ("net: Remove useless function skb_header_release")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/soft-interface.c

index 7c8288245f808056f21b7adc718776c0d2f49142..3af4b0b29b2302829b9ddad60cc599800f7327b3 100644 (file)
@@ -69,8 +69,8 @@ int batadv_skb_head_push(struct sk_buff *skb, unsigned int len)
        int result;
 
        /* TODO: We must check if we can release all references to non-payload
-        * data using __skb_header_release in our skbs to allow skb_cow_header to
-        * work optimally. This means that those skbs are not allowed to read
+        * data using __skb_header_release in our skbs to allow skb_cow_header
+        * to work optimally. This means that those skbs are not allowed to read
         * or write any data which is before the current position of skb->data
         * after that call and thus allow other skbs with the same data buffer
         * to write freely in that area.