projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a311abd
)
batman-adv: Remove unnecessary length qualifier in %14pM
author
Joe Perches
<joe@perches.com>
Wed, 14 Jun 2017 09:33:52 +0000
(
02:33
-0700)
committer
Simon Wunderlich
<sw@simonwunderlich.de>
Sat, 29 Jul 2017 07:51:26 +0000
(09:51 +0200)
It's misleading and unnecessary.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/distributed-arp-table.c
patch
|
blob
|
history
diff --git
a/net/batman-adv/distributed-arp-table.c
b/net/batman-adv/distributed-arp-table.c
index
6930d6b
..
b6cfa78
100644
(file)
--- a/
net/batman-adv/distributed-arp-table.c
+++ b/
net/batman-adv/distributed-arp-table.c
@@
-834,7
+834,7
@@
int batadv_dat_cache_seq_print_text(struct seq_file *seq, void *offset)
last_seen_msecs = last_seen_msecs % 60000;
last_seen_secs = last_seen_msecs / 1000;
- seq_printf(seq, " * %15pI4 %
14
pM %4i %6i:%02i\n",
+ seq_printf(seq, " * %15pI4 %pM %4i %6i:%02i\n",
&dat_entry->ip, dat_entry->mac_addr,
batadv_print_vid(dat_entry->vid),
last_seen_mins, last_seen_secs);