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

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
...@@ -4078,8 +4078,7 @@ static void skge_remove(struct pci_dev *pdev) ...@@ -4078,8 +4078,7 @@ static void skge_remove(struct pci_dev *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int skge_suspend(struct device *dev) static int skge_suspend(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct skge_hw *hw = dev_get_drvdata(dev);
struct skge_hw *hw = pci_get_drvdata(pdev);
int i; int i;
if (!hw) if (!hw)
...@@ -4103,8 +4102,7 @@ static int skge_suspend(struct device *dev) ...@@ -4103,8 +4102,7 @@ static int skge_suspend(struct device *dev)
static int skge_resume(struct device *dev) static int skge_resume(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct skge_hw *hw = dev_get_drvdata(dev);
struct skge_hw *hw = pci_get_drvdata(pdev);
int i, err; int i, err;
if (!hw) if (!hw)
......
...@@ -5160,8 +5160,7 @@ static void sky2_remove(struct pci_dev *pdev) ...@@ -5160,8 +5160,7 @@ static void sky2_remove(struct pci_dev *pdev)
static int sky2_suspend(struct device *dev) static int sky2_suspend(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct sky2_hw *hw = dev_get_drvdata(dev);
struct sky2_hw *hw = pci_get_drvdata(pdev);
int i; int i;
if (!hw) if (!hw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment