diff options
author | Pavel Machek <pavel@ucw.cz> | 2005-09-03 18:56:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 03:06:16 -0400 |
commit | ca078bae813dd46c0f9b102fdfb4a3384641ff48 (patch) | |
tree | e3348f5dcb24159a522941aa2e3ee40bc9e0589b /drivers/video/i810 | |
parent | 829ca9a30a2ddb727981d80fabdbff2ea86bc9ea (diff) |
[PATCH] swsusp: switch pm_message_t to struct
This adds type-checking to pm_message_t, so that people can't confuse it
with int or u32. It also allows us to fix "disk yoyo" during suspend (disk
spinning down/up/down).
[We've tried that before; since that cpufreq problems were fixed and I've
tried make allyes config and fixed resulting damage.]
Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Alexander Nyberg <alexn@telia.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/i810')
-rw-r--r-- | drivers/video/i810/i810_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/i810/i810_main.c b/drivers/video/i810/i810_main.c index 7513fb9b19cf..6db183462b92 100644 --- a/drivers/video/i810/i810_main.c +++ b/drivers/video/i810/i810_main.c | |||
@@ -1506,12 +1506,12 @@ static int i810fb_suspend(struct pci_dev *dev, pm_message_t state) | |||
1506 | struct i810fb_par *par = (struct i810fb_par *) info->par; | 1506 | struct i810fb_par *par = (struct i810fb_par *) info->par; |
1507 | int blank = 0, prev_state = par->cur_state; | 1507 | int blank = 0, prev_state = par->cur_state; |
1508 | 1508 | ||
1509 | if (state == prev_state) | 1509 | if (state.event == prev_state) |
1510 | return 0; | 1510 | return 0; |
1511 | 1511 | ||
1512 | par->cur_state = state; | 1512 | par->cur_state = state.event; |
1513 | 1513 | ||
1514 | switch (state) { | 1514 | switch (state.event) { |
1515 | case 1: | 1515 | case 1: |
1516 | blank = VESA_VSYNC_SUSPEND; | 1516 | blank = VESA_VSYNC_SUSPEND; |
1517 | break; | 1517 | break; |