Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 326fcfa5 authored by Felix Fietkau's avatar Felix Fietkau Committed by David S. Miller
Browse files

net: remove unnecessary semicolon in netdev_alloc_pcpu_stats()



This semicolon causes a build error if the function call is wrapped in
parentheses.

Fixes: aabc92bb ("net: add __netdev_alloc_pcpu_stats() to indicate gfp flags")
Reported-by: default avatarImre Kaloz <kaloz@openwrt.org>
Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>
Acked-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8a0d19c5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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>