batman-adv: Keep line length to 80 chars

Message ID 1286705226-4203-1-git-send-email-sven.eckelmann@gmx.de (mailing list archive)
State Accepted, archived
Headers

Commit Message

Sven Eckelmann Oct. 10, 2010, 10:07 a.m. UTC
  48628bb9419fb5b01a26ca995465d1aded1e47ed added a line over the limit of
80 chars. This should be avoided according to the kernel
Documentation/CodingStyle.

Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de>
---
 batman-adv/soft-interface.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
  

Comments

Marek Lindner Oct. 12, 2010, 9:59 a.m. UTC | #1
On Sunday 10 October 2010 12:07:06 Sven Eckelmann wrote:
> 48628bb9419fb5b01a26ca995465d1aded1e47ed added a line over the limit of
> 80 chars. This should be avoided according to the kernel
> Documentation/CodingStyle.

Applied in revision 1826.

Regards,
Marek
  

Patch

diff --git a/batman-adv/soft-interface.c b/batman-adv/soft-interface.c
index 22fe548..683ec5f 100644
--- a/batman-adv/soft-interface.c
+++ b/batman-adv/soft-interface.c
@@ -220,7 +220,8 @@  int softif_neigh_seq_print_text(struct seq_file *seq, void *offset)
 	return 0;
 }
 
-static void softif_batman_recv(struct sk_buff *skb, struct net_device *dev, short vid)
+static void softif_batman_recv(struct sk_buff *skb, struct net_device *dev,
+			       short vid)
 {
 	struct bat_priv *bat_priv = netdev_priv(dev);
 	struct ethhdr *ethhdr = (struct ethhdr *)skb->data;