diff options
| author | Yijing Wang <[email protected]> | 2013-06-27 21:00:11 +0800 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2013-06-28 22:11:48 -0700 |
| commit | d36a21da415b8e6545ae8b4eb6b23eea2ce001c8 (patch) | |
| tree | 753ffccc03241b4e24528c71e784250b6a3a5cf2 | |
| parent | 1ca01512a2a95aa061c3fc24b7c5d7fad9f606bf (diff) | |
ssb/trivial: replace numeric with standard PM state macros
Use standard PM state macros PCI_Dx instead of numeric 0/1/2..
Signed-off-by: Yijing Wang <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/ssb/pcihost_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ssb/pcihost_wrapper.c b/drivers/ssb/pcihost_wrapper.c index 32ed1fa4a82e..69161bbc4d0b 100644 --- a/drivers/ssb/pcihost_wrapper.c +++ b/drivers/ssb/pcihost_wrapper.c @@ -38,7 +38,7 @@ static int ssb_pcihost_resume(struct pci_dev *dev) struct ssb_bus *ssb = pci_get_drvdata(dev); int err; - pci_set_power_state(dev, 0); + pci_set_power_state(dev, PCI_D0); err = pci_enable_device(dev); if (err) return err; |