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

Commit 7baea6ef authored by Dan Carpenter's avatar Dan Carpenter Committed by David S. Miller
Browse files

net: sxgbe: make "core_ops" static



The "core_ops" variable isn't referenced outside this file and Sparse
complains about it:

	drivers/net/ethernet/samsung/sxgbe/sxgbe_core.c:239:29: warning:
	symbol 'core_ops' was not declared. Should it be static?

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4f6ed914
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ static void sxgbe_disable_rx_csum(void __iomem *ioaddr)
	writel(ctrl, ioaddr + SXGBE_CORE_RX_CONFIG_REG);
}

const struct sxgbe_core_ops core_ops = {
static const struct sxgbe_core_ops core_ops = {
	.core_init		= sxgbe_core_init,
	.dump_regs		= sxgbe_core_dump_regs,
	.host_irq_status	= sxgbe_core_host_irq_status,