diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2019-04-05 13:31:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-06 18:32:21 -0700 |
commit | 9f73c2bb46f4fae27c2b3b54d1964276439c02e8 (patch) | |
tree | 30d2be0c12790ad306c26913b684a0ef019ab293 /net/hsr | |
parent | b1b4aa914080286aa82d4e629d1a646738f2f94c (diff) | |
download | linux-9f73c2bb46f4fae27c2b3b54d1964276439c02e8.tar.bz2 |
net: hsr: add blank line after function declaration
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>
Diffstat (limited to 'net/hsr')
-rw-r--r-- | net/hsr/hsr_framereg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/hsr/hsr_framereg.c b/net/hsr/hsr_framereg.c index cba4b2486050..14f816149489 100644 --- 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))) |