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)
commitc018b7af5e9e59c19df39a86e3da58e6293d922b
tree152281ce9da3eef43b507d56dc45f761e716015d
parente9bf3b075384b3b400ab4689a2014860704164b7
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>
drivers/net/ethernet/smsc/smsc9420.c