diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-05 13:58:11 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-06 22:32:32 -0500 |
commit | 326fcfa5acca446b3f71e99f6d19881145556e5c (patch) | |
tree | 1e47fea45e7258b04d7e4abeda8cc01aba427f75 /include/linux/netdevice.h | |
parent | 8a0d19c5ed417c78d03f4e0fa7215e58c40896d8 (diff) |
net: remove unnecessary semicolon in netdev_alloc_pcpu_stats()
This semicolon causes a build error if the function call is wrapped in
parentheses.
Fixes: aabc92bbe3cf ("net: add __netdev_alloc_pcpu_stats() to indicate gfp flags")
Reported-by: Imre Kaloz <kaloz@openwrt.org>
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 3b5d134e945a..3143c847bddb 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2084,7 +2084,7 @@ struct pcpu_sw_netstats { }) #define netdev_alloc_pcpu_stats(type) \ - __netdev_alloc_pcpu_stats(type, GFP_KERNEL); + __netdev_alloc_pcpu_stats(type, GFP_KERNEL) #include <linux/notifier.h> |