diff options
| author | Erik-Jan Post <ej.lfs@xs4all.nl> | 2010-01-15 20:01:05 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-01-16 15:15:37 -0500 |
| commit | 8a3a95c32f612068be8dae74fa5fc4cf2db1592e (patch) | |
| tree | 4470c3e0068651b2dd0830310437a8ef2722b5ba | |
| parent | 0b94190e1e60f96962b82d35729d7d44cf298ef8 (diff) | |
viafb: do modesetting after updating variables
Reorder viafb_set_par to allow using the updated variables in
viafb_setmode. This fixes a regression that prevented proper runtime mode
changes.
Signed-off-by: Erik-Jan Post <ej.lfs@xs4all.nl>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: Scott Fang <ScottFang@viatech.com.cn>
Cc: Joseph Chan <JosephChan@via.com.tw>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | drivers/video/via/viafbdev.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/video/via/viafbdev.c b/drivers/video/via/viafbdev.c index a0004c17af6c..3028e7ddc3b5 100644 --- a/drivers/video/via/viafbdev.c +++ b/drivers/video/via/viafbdev.c | |||
| @@ -177,16 +177,15 @@ static int viafb_set_par(struct fb_info *info) | |||
| 177 | } | 177 | } |
| 178 | 178 | ||
| 179 | if (vmode_index != VIA_RES_INVALID) { | 179 | if (vmode_index != VIA_RES_INVALID) { |
| 180 | viafb_setmode(vmode_index, info->var.xres, info->var.yres, | ||
| 181 | info->var.bits_per_pixel, vmode_index1, | ||
| 182 | viafb_second_xres, viafb_second_yres, viafb_bpp1); | ||
| 183 | |||
| 184 | viafb_update_fix(info); | 180 | viafb_update_fix(info); |
| 185 | viafb_bpp = info->var.bits_per_pixel; | 181 | viafb_bpp = info->var.bits_per_pixel; |
| 186 | if (info->var.accel_flags & FB_ACCELF_TEXT) | 182 | if (info->var.accel_flags & FB_ACCELF_TEXT) |
| 187 | info->flags &= ~FBINFO_HWACCEL_DISABLED; | 183 | info->flags &= ~FBINFO_HWACCEL_DISABLED; |
| 188 | else | 184 | else |
| 189 | info->flags |= FBINFO_HWACCEL_DISABLED; | 185 | info->flags |= FBINFO_HWACCEL_DISABLED; |
| 186 | viafb_setmode(vmode_index, info->var.xres, info->var.yres, | ||
| 187 | info->var.bits_per_pixel, vmode_index1, | ||
| 188 | viafb_second_xres, viafb_second_yres, viafb_bpp1); | ||
| 190 | } | 189 | } |
| 191 | 190 | ||
| 192 | return 0; | 191 | return 0; |
