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

Commit dfa56f83 authored by Chuhong Yuan's avatar Chuhong Yuan Committed by David S. Miller
Browse files

forcedeth: Use dev_get_drvdata where possible



Instead of using to_pci_dev + pci_get_drvdata,
use dev_get_drvdata to make code simpler.

Signed-off-by: default avatarChuhong Yuan <hslester96@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7bdb9234
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -6126,8 +6126,7 @@ static void nv_remove(struct pci_dev *pci_dev)
#ifdef CONFIG_PM_SLEEP
#ifdef CONFIG_PM_SLEEP
static int nv_suspend(struct device *device)
static int nv_suspend(struct device *device)
{
{
	struct pci_dev *pdev = to_pci_dev(device);
	struct net_device *dev = dev_get_drvdata(device);
	struct net_device *dev = pci_get_drvdata(pdev);
	struct fe_priv *np = netdev_priv(dev);
	struct fe_priv *np = netdev_priv(dev);
	u8 __iomem *base = get_hwbase(dev);
	u8 __iomem *base = get_hwbase(dev);
	int i;
	int i;