diff options
author | Joe Perches <joe@perches.com> | 2010-11-14 17:04:57 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-15 11:07:15 -0800 |
commit | c59504ebc5baa628706d10c2d3c7e1f4bc3c2147 (patch) | |
tree | cb4cc57485e6041102e2e7a5127556733adef78c /include | |
parent | 779bb41d4bd111d5631d58d1bf2d00b5c4389c80 (diff) | |
download | linux-stable-c59504ebc5baa628706d10c2d3c7e1f4bc3c2147.tar.gz linux-stable-c59504ebc5baa628706d10c2d3c7e1f4bc3c2147.tar.bz2 linux-stable-c59504ebc5baa628706d10c2d3c7e1f4bc3c2147.zip |
include/linux/if_macvlan.h: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/if_macvlan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/if_macvlan.h b/include/linux/if_macvlan.h index 8a2fd66a8b5f..ac96a2d76291 100644 --- a/include/linux/if_macvlan.h +++ b/include/linux/if_macvlan.h @@ -69,7 +69,7 @@ static inline void macvlan_count_rx(const struct macvlan_dev *vlan, rx_stats = this_cpu_ptr(vlan->rx_stats); if (likely(success)) { u64_stats_update_begin(&rx_stats->syncp); - rx_stats->rx_packets++;; + rx_stats->rx_packets++; rx_stats->rx_bytes += len; if (multicast) rx_stats->rx_multicast++; |