Commit 9f73c2bb authored by Murali Karicheri's avatar Murali Karicheri Committed by David S. Miller

net: hsr: add blank line after function declaration

Add a blank line after function declaration as suggested by
checkpatch.pl -f
Signed-off-by: default avatarMurali Karicheri <m-karicheri2@ti.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b1b4aa91
......@@ -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)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment