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

net: broadcom: Use dev_get_drvdata

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 f54b0fc8
...@@ -8673,8 +8673,7 @@ bnx2_remove_one(struct pci_dev *pdev) ...@@ -8673,8 +8673,7 @@ bnx2_remove_one(struct pci_dev *pdev)
static int static int
bnx2_suspend(struct device *device) bnx2_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 bnx2 *bp = netdev_priv(dev); struct bnx2 *bp = netdev_priv(dev);
if (netif_running(dev)) { if (netif_running(dev)) {
...@@ -8693,8 +8692,7 @@ bnx2_suspend(struct device *device) ...@@ -8693,8 +8692,7 @@ bnx2_suspend(struct device *device)
static int static int
bnx2_resume(struct device *device) bnx2_resume(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 bnx2 *bp = netdev_priv(dev); struct bnx2 *bp = netdev_priv(dev);
if (!netif_running(dev)) if (!netif_running(dev))
......
...@@ -10920,8 +10920,7 @@ static void bnxt_shutdown(struct pci_dev *pdev) ...@@ -10920,8 +10920,7 @@ static void bnxt_shutdown(struct pci_dev *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int bnxt_suspend(struct device *device) static int bnxt_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 bnxt *bp = netdev_priv(dev); struct bnxt *bp = netdev_priv(dev);
int rc = 0; int rc = 0;
...@@ -10937,8 +10936,7 @@ static int bnxt_suspend(struct device *device) ...@@ -10937,8 +10936,7 @@ static int bnxt_suspend(struct device *device)
static int bnxt_resume(struct device *device) static int bnxt_resume(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 bnxt *bp = netdev_priv(dev); struct bnxt *bp = netdev_priv(dev);
int rc = 0; int rc = 0;
......
...@@ -18041,8 +18041,7 @@ static void tg3_remove_one(struct pci_dev *pdev) ...@@ -18041,8 +18041,7 @@ static void tg3_remove_one(struct pci_dev *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int tg3_suspend(struct device *device) static int tg3_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 tg3 *tp = netdev_priv(dev); struct tg3 *tp = netdev_priv(dev);
int err = 0; int err = 0;
...@@ -18098,8 +18097,7 @@ static int tg3_suspend(struct device *device) ...@@ -18098,8 +18097,7 @@ static int tg3_suspend(struct device *device)
static int tg3_resume(struct device *device) static int tg3_resume(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 tg3 *tp = netdev_priv(dev); struct tg3 *tp = netdev_priv(dev);
int err = 0; int err = 0;
......
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