Commit 1d0bbbf2 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by David S. Miller
Browse files

net: mhi_net: make mhi_wwan_ops static



This symbol is not used outside of net.c, so marks it static.

Fix the following sparse warning:

drivers/net/mhi/net.c:385:23: warning: symbol 'mhi_wwan_ops' was not
declared. Should it be static?

Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 66aeec85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -382,7 +382,7 @@ static void mhi_net_dellink(void *ctxt, struct net_device *ndev,
	dev_set_drvdata(&mhi_dev->dev, NULL);
}

const struct wwan_ops mhi_wwan_ops = {
static const struct wwan_ops mhi_wwan_ops = {
	.owner = THIS_MODULE,
	.priv_size = sizeof(struct mhi_net_dev),
	.setup = mhi_net_setup,