aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e
diff options
context:
space:
mode:
authorAuke Kok <auke-jan.h.kok@intel.com>2008-02-21 18:11:13 -0500
committerJeff Garzik <jeff@garzik.org>2008-02-24 00:07:52 -0500
commit3bf319a787a881aa6ad8213b98b93b8de2b6f0e0 (patch)
treea06b5d1a8ee61b489f06db643f7ce77feb1d286a /drivers/net/e1000e
parent489815ce224e75c2fcd5ebdfaa740d7f9a4f20d3 (diff)
e1000e: remove unused read value in ASPM disable code.
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/e1000e')
-rw-r--r--drivers/net/e1000e/netdev.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c
index 7824bc2993a7..fc5c63f4f578 100644
--- a/drivers/net/e1000e/netdev.c
+++ b/drivers/net/e1000e/netdev.c
@@ -3490,7 +3490,6 @@ static int e1000_suspend(struct pci_dev *pdev, pm_message_t state)
3490static void e1000e_disable_l1aspm(struct pci_dev *pdev) 3490static void e1000e_disable_l1aspm(struct pci_dev *pdev)
3491{ 3491{
3492 int pos; 3492 int pos;
3493 u32 cap;
3494 u16 val; 3493 u16 val;
3495 3494
3496 /* 3495 /*
@@ -3505,7 +3504,6 @@ static void e1000e_disable_l1aspm(struct pci_dev *pdev)
3505 * active. 3504 * active.
3506 */ 3505 */
3507 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP); 3506 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
3508 pci_read_config_dword(pdev, pos + PCI_EXP_LNKCAP, &cap);
3509 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &val); 3507 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &val);
3510 if (val & 0x2) { 3508 if (val & 0x2) {
3511 dev_warn(&pdev->dev, "Disabling L1 ASPM\n"); 3509 dev_warn(&pdev->dev, "Disabling L1 ASPM\n");