diff options
author | Yijing Wang <wangyijing@huawei.com> | 2013-06-27 20:52:36 +0800 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-06-28 08:15:33 +1000 |
commit | 433555031e5f4aeb893ea9fe9c3df9df9d566cd4 (patch) | |
tree | 221f78009918671ef854e7e4c0a183a77a7b4268 /drivers/char/agp/ati-agp.c | |
parent | c7d015f319659ea38185f9093c7f60eea1e5e4ff (diff) |
char/agp: 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 <wangyijing@huawei.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/char/agp/ati-agp.c')
-rw-r--r-- | drivers/char/agp/ati-agp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/agp/ati-agp.c b/drivers/char/agp/ati-agp.c index 0628d7b65c71..03c1dc1ab552 100644 --- a/drivers/char/agp/ati-agp.c +++ b/drivers/char/agp/ati-agp.c @@ -236,14 +236,14 @@ static int ati_configure(void) static int agp_ati_suspend(struct pci_dev *dev, pm_message_t state) { pci_save_state(dev); - pci_set_power_state(dev, 3); + pci_set_power_state(dev, PCI_D3hot); return 0; } static int agp_ati_resume(struct pci_dev *dev) { - pci_set_power_state(dev, 0); + pci_set_power_state(dev, PCI_D0); pci_restore_state(dev); return ati_configure(); |