Skip to content

Commit

Permalink
net: hsr: add blank line after function declaration
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Murali Karicheri authored and David S. Miller committed Apr 7, 2019
1 parent b1b4aa9 commit 9f73c2b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions net/hsr/hsr_framereg.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 9f73c2b

Please sign in to comment.