Commit 213e3bc723e53af0976421d2808ea3f6cc821c56

Authored by Arvid Brodin
Committed by David S. Miller
1 parent 19990e29fe

net/hsr: Very small fix of comment style.

Signed-off-by: Arvid Brodin <arvid.brodin@alten.se>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

net/hsr/hsr_framereg.c
... ... @@ -288,7 +288,8 @@
288 288 static bool seq_nr_after(u16 a, u16 b)
289 289 {
290 290 /* Remove inconsistency where
291   - * seq_nr_after(a, b) == seq_nr_before(a, b) */
  291 + * seq_nr_after(a, b) == seq_nr_before(a, b)
  292 + */
292 293 if ((int) b - a == 32768)
293 294 return false;
294 295