From: Murali Karicheri Date: Fri, 5 Apr 2019 17:31:33 +0000 (-0400) Subject: net: hsr: add blank line after function declaration X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9f73c2bb46f4fae27c2b3b54d1964276439c02e8;p=linux.git 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 Signed-off-by: David S. Miller --- diff --git a/net/hsr/hsr_framereg.c b/net/hsr/hsr_framereg.c index cba4b2486050c..14f8161494898 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)))