mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
smsc9420: use named constants for pci_power_t values
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>
This commit is contained in:
parent
e9bf3b0753
commit
c018b7af5e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue