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

Commit 84d15ae5 authored by Wei Tang's avatar Wei Tang Committed by David S. Miller
Browse files

net: do not initialise statics to 0



This patch fixes the checkpatch.pl error to dev.c:

ERROR: do not initialise statics to 0

Signed-off-by: default avatarWei Tang <tangwei@cmss.chinamobile.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 40309d26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2422,7 +2422,7 @@ EXPORT_SYMBOL(__skb_tx_hash);

static void skb_warn_bad_offload(const struct sk_buff *skb)
{
	static const netdev_features_t null_features = 0;
	static const netdev_features_t null_features;
	struct net_device *dev = skb->dev;
	const char *name = "";