Commit 2c5b0a86 authored by Marek Vasut's avatar Marek Vasut Committed by David S. Miller
Browse files

net: ks8851: Use dev_{get,set}_drvdata()



Replace spi_{get,set}_drvdata() with dev_{get,set}_drvdata(), which
works for both SPI and platform drivers. This is done in preparation
for unifying the KS8851 SPI and parallel bus drivers.

There should be no functional change.

Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarMarek Vasut <marex@denx.de>
Cc: David S. Miller <davem@davemloft.net>
Cc: Lukas Wunner <lukas@wunner.de>
Cc: Petr Stetiar <ynezz@true.cz>
Cc: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b6948e1b
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1518,7 +1518,7 @@ static int ks8851_probe(struct spi_device *spi)
	netdev->ethtool_ops = &ks8851_ethtool_ops;
	SET_NETDEV_DEV(netdev, dev);

	spi_set_drvdata(spi, ks);
	dev_set_drvdata(dev, ks);

	netif_carrier_off(ks->netdev);
	netdev->if_port = IF_PORT_100BASET;
@@ -1567,8 +1567,10 @@ err_reg_io:

static int ks8851_remove(struct spi_device *spi)
{
	struct ks8851_net *priv = spi_get_drvdata(spi);
	struct device *dev = &spi->dev;
	struct ks8851_net *priv;

	priv = dev_get_drvdata(dev);

	if (netif_msg_drv(priv))
		dev_info(dev, "remove\n");