diff options
author | David Miller <davem@davemloft.net> | 2011-01-11 18:54:07 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-03-22 02:47:47 -0400 |
commit | 0144a2568c7d8e58806d3f176f8454c3a3a35ba0 (patch) | |
tree | 88ec2f4aa50112084a177fb52646d6071d35a518 /drivers/video/vt8623fb.c | |
parent | 3ff259f2ed21e4438dc7937348710397e5ebd71e (diff) |
vt8623fb: Don't clobber par->state.vgabase during open method.
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/vt8623fb.c')
-rw-r--r-- | drivers/video/vt8623fb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/vt8623fb.c b/drivers/video/vt8623fb.c index 54ddaeb60f0a..eee01a2ae8c9 100644 --- a/drivers/video/vt8623fb.c +++ b/drivers/video/vt8623fb.c | |||
@@ -292,7 +292,10 @@ static int vt8623fb_open(struct fb_info *info, int user) | |||
292 | 292 | ||
293 | mutex_lock(&(par->open_lock)); | 293 | mutex_lock(&(par->open_lock)); |
294 | if (par->ref_count == 0) { | 294 | if (par->ref_count == 0) { |
295 | void __iomem *vgabase = par->state.vgabase; | ||
296 | |||
295 | memset(&(par->state), 0, sizeof(struct vgastate)); | 297 | memset(&(par->state), 0, sizeof(struct vgastate)); |
298 | par->state.vgabase = vgabase; | ||
296 | par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP; | 299 | par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS | VGA_SAVE_CMAP; |
297 | par->state.num_crtc = 0xA2; | 300 | par->state.num_crtc = 0xA2; |
298 | par->state.num_seq = 0x50; | 301 | par->state.num_seq = 0x50; |