diff options
Diffstat (limited to 'drivers/video/aty')
-rw-r--r-- | drivers/video/aty/radeon_pm.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index e308ed2d249a..365de5dcc888 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c | |||
@@ -2621,25 +2621,28 @@ static int radeon_restore_pci_cfg(struct radeonfb_info *rinfo) | |||
2621 | } | 2621 | } |
2622 | 2622 | ||
2623 | 2623 | ||
2624 | int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t state) | 2624 | int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) |
2625 | { | 2625 | { |
2626 | struct fb_info *info = pci_get_drvdata(pdev); | 2626 | struct fb_info *info = pci_get_drvdata(pdev); |
2627 | struct radeonfb_info *rinfo = info->par; | 2627 | struct radeonfb_info *rinfo = info->par; |
2628 | int i; | 2628 | int i; |
2629 | 2629 | ||
2630 | if (state.event == pdev->dev.power.power_state.event) | 2630 | if (mesg.event == pdev->dev.power.power_state.event) |
2631 | return 0; | 2631 | return 0; |
2632 | 2632 | ||
2633 | printk(KERN_DEBUG "radeonfb (%s): suspending to state: %d...\n", | 2633 | printk(KERN_DEBUG "radeonfb (%s): suspending for event: %d...\n", |
2634 | pci_name(pdev), state.event); | 2634 | pci_name(pdev), mesg.event); |
2635 | 2635 | ||
2636 | /* For suspend-to-disk, we cheat here. We don't suspend anything and | 2636 | /* For suspend-to-disk, we cheat here. We don't suspend anything and |
2637 | * let fbcon continue drawing until we are all set. That shouldn't | 2637 | * let fbcon continue drawing until we are all set. That shouldn't |
2638 | * really cause any problem at this point, provided that the wakeup | 2638 | * really cause any problem at this point, provided that the wakeup |
2639 | * code knows that any state in memory may not match the HW | 2639 | * code knows that any state in memory may not match the HW |
2640 | */ | 2640 | */ |
2641 | if (state.event == PM_EVENT_FREEZE) | 2641 | switch (mesg.event) { |
2642 | case PM_EVENT_FREEZE: /* about to take snapshot */ | ||
2643 | case PM_EVENT_PRETHAW: /* before restoring snapshot */ | ||
2642 | goto done; | 2644 | goto done; |
2645 | } | ||
2643 | 2646 | ||
2644 | acquire_console_sem(); | 2647 | acquire_console_sem(); |
2645 | 2648 | ||
@@ -2706,7 +2709,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, pm_message_t state) | |||
2706 | release_console_sem(); | 2709 | release_console_sem(); |
2707 | 2710 | ||
2708 | done: | 2711 | done: |
2709 | pdev->dev.power.power_state = state; | 2712 | pdev->dev.power.power_state = mesg; |
2710 | 2713 | ||
2711 | return 0; | 2714 | return 0; |
2712 | } | 2715 | } |