The following commit has been merged in the master branch: commit 6ffb0a7b1bcd7a3ab572a7b05b11ec6f4e20a45f Author: Sven Eckelmann sven@narfation.org Date: Sun May 8 09:39:55 2011 +0200
batman-adv: Fix line over 80 characters
160dd1399c4d589c0c5678a759e8ac7a7eefe64e introduced a line over 80 and can not be accepted according to the Linux Coding Style.
Signed-off-by: Sven Eckelmann sven@narfation.org
diff --git a/translation-table.c b/translation-table.c index 2bd6a31..7b72966 100644 --- a/translation-table.c +++ b/translation-table.c @@ -505,7 +505,8 @@ int tt_global_seq_print_text(struct seq_file *seq, void *offset) goto out; }
- seq_printf(seq, "Globally announced TT entries received via the mesh %s\n", + seq_printf(seq, + "Globally announced TT entries received via the mesh %s\n", net_dev->name);
spin_lock_bh(&bat_priv->tt_ghash_lock);