]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
smsc9420: use named constants for pci_power_t values
authorJulia Lawall <Julia.Lawall@lip6.fr>
Thu, 2 Jan 2014 23:40:31 +0000 (00:40 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sat, 4 Jan 2014 00:58:48 +0000 (19:58 -0500)
The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
expression e1,e2;
@@

pci_enable_wake(e1,
- 0
+ PCI_D0
,e2)
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/smsc/smsc9420.c

index 9d6effe5f699a08a01dc64e047be64e6c898690c..d3b967aff9e006ab771a1218bb643f2756f5076d 100644 (file)
@@ -1540,7 +1540,7 @@ static int smsc9420_resume(struct pci_dev *pdev)
 
        pci_set_master(pdev);
 
-       err = pci_enable_wake(pdev, 0, 0);
+       err = pci_enable_wake(pdev, PCI_D0, 0);
        if (err)
                netif_warn(pd, ifup, pd->dev, "pci_enable_wake failed: %d\n",
                           err);