diff options
author | Joe Perches <joe@perches.com> | 2010-11-14 12:04:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-15 14:07:15 -0500 |
commit | c59504ebc5baa628706d10c2d3c7e1f4bc3c2147 (patch) | |
tree | cb4cc57485e6041102e2e7a5127556733adef78c /include/linux/if_macvlan.h | |
parent | 779bb41d4bd111d5631d58d1bf2d00b5c4389c80 (diff) |
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/linux/if_macvlan.h')
-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, | |||
69 | rx_stats = this_cpu_ptr(vlan->rx_stats); | 69 | rx_stats = this_cpu_ptr(vlan->rx_stats); |
70 | if (likely(success)) { | 70 | if (likely(success)) { |
71 | u64_stats_update_begin(&rx_stats->syncp); | 71 | u64_stats_update_begin(&rx_stats->syncp); |
72 | rx_stats->rx_packets++;; | 72 | rx_stats->rx_packets++; |
73 | rx_stats->rx_bytes += len; | 73 | rx_stats->rx_bytes += len; |
74 | if (multicast) | 74 | if (multicast) |
75 | rx_stats->rx_multicast++; | 75 | rx_stats->rx_multicast++; |