aboutsummaryrefslogtreecommitdiff
path: root/include/linux/if_macvlan.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-11-14 17:04:57 +0000
committerDavid S. Miller <davem@davemloft.net>2010-11-15 11:07:15 -0800
commitc59504ebc5baa628706d10c2d3c7e1f4bc3c2147 (patch)
treecb4cc57485e6041102e2e7a5127556733adef78c /include/linux/if_macvlan.h
parent779bb41d4bd111d5631d58d1bf2d00b5c4389c80 (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.h2
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++;