projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1b4aa9
)
net: hsr: add blank line after function declaration
author
Murali Karicheri
<m-karicheri2@ti.com>
Fri, 5 Apr 2019 17:31:33 +0000
(13:31 -0400)
committer
David S. Miller
<davem@davemloft.net>
Sun, 7 Apr 2019 01:32:21 +0000
(18:32 -0700)
Add a blank line after function declaration as suggested by
checkpatch.pl -f
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/hsr/hsr_framereg.c
patch
|
blob
|
history
diff --git
a/net/hsr/hsr_framereg.c
b/net/hsr/hsr_framereg.c
index cba4b2486050c042d6e35d3ab9b4599b22e5f976..14f8161494898cfe8a9430f5e301f219f38181ab 100644
(file)
--- a/
net/hsr/hsr_framereg.c
+++ b/
net/hsr/hsr_framereg.c
@@
-49,6
+49,7
@@
static bool seq_nr_after(u16 a, u16 b)
return (((s16)(b - a)) < 0);
}
+
#define seq_nr_before(a, b) seq_nr_after((b), (a))
#define seq_nr_after_or_eq(a, b) (!seq_nr_before((a), (b)))
#define seq_nr_before_or_eq(a, b) (!seq_nr_after((a), (b)))