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: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Marek 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: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b6948e1b7b
commit
2c5b0a86ac
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user