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

net: marvell: 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 f876a784
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -4078,8 +4078,7 @@ static void skge_remove(struct pci_dev *pdev)
#ifdef CONFIG_PM_SLEEP
static int skge_suspend(struct device *dev)
{
	struct pci_dev *pdev = to_pci_dev(dev);
	struct skge_hw *hw  = pci_get_drvdata(pdev);
	struct skge_hw *hw  = dev_get_drvdata(dev);
	int i;

	if (!hw)
@@ -4103,8 +4102,7 @@ static int skge_suspend(struct device *dev)

static int skge_resume(struct device *dev)
{
	struct pci_dev *pdev = to_pci_dev(dev);
	struct skge_hw *hw  = pci_get_drvdata(pdev);
	struct skge_hw *hw  = dev_get_drvdata(dev);
	int i, err;

	if (!hw)
+1 −2
Original line number Diff line number Diff line
@@ -5160,8 +5160,7 @@ static void sky2_remove(struct pci_dev *pdev)

static int sky2_suspend(struct device *dev)
{
	struct pci_dev *pdev = to_pci_dev(dev);
	struct sky2_hw *hw = pci_get_drvdata(pdev);
	struct sky2_hw *hw = dev_get_drvdata(dev);
	int i;

	if (!hw)