diff options
author | Arvid Brodin <arvid.brodin@alten.se> | 2013-11-29 23:37:07 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-30 12:48:13 -0500 |
commit | 213e3bc723e53af0976421d2808ea3f6cc821c56 (patch) | |
tree | 4ba1e9f9cdcb1bca5d56895e4194f0373a627d7a | |
parent | 19990e29fedc2fe7056e66da31364978d49ea1e1 (diff) | |
download | linux-213e3bc723e53af0976421d2808ea3f6cc821c56.tar.gz linux-213e3bc723e53af0976421d2808ea3f6cc821c56.tar.bz2 linux-213e3bc723e53af0976421d2808ea3f6cc821c56.zip |
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>
-rw-r--r-- | net/hsr/hsr_framereg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/hsr/hsr_framereg.c b/net/hsr/hsr_framereg.c index 003f5bb3acd2..4bdab1521878 100644 --- a/net/hsr/hsr_framereg.c +++ b/net/hsr/hsr_framereg.c @@ -288,7 +288,8 @@ void hsr_addr_subst_dest(struct hsr_priv *hsr_priv, struct ethhdr *ethhdr, static bool seq_nr_after(u16 a, u16 b) { /* Remove inconsistency where - * seq_nr_after(a, b) == seq_nr_before(a, b) */ + * seq_nr_after(a, b) == seq_nr_before(a, b) + */ if ((int) b - a == 32768) return false; |