diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2006-01-09 23:53:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:47 -0500 |
commit | e53f87a02a0d77c519fb93c7aa0912956294050c (patch) | |
tree | 91d982c47fcb9795b9c87edb29613253be50bd34 /drivers/video/vesafb.c | |
parent | f845fbac4e68573351965d9aaf626a63cc4151c7 (diff) |
[PATCH] Fix vesafb display panning regression
Fix vesafb hang when scroll mode is REDRAW.
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/vesafb.c')
-rw-r--r-- | drivers/video/vesafb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/vesafb.c b/drivers/video/vesafb.c index e6e56b8df2db..8982e540214c 100644 --- a/drivers/video/vesafb.c +++ b/drivers/video/vesafb.c | |||
@@ -417,6 +417,9 @@ static int __init vesafb_probe(struct platform_device *dev) | |||
417 | info->flags = FBINFO_FLAG_DEFAULT | | 417 | info->flags = FBINFO_FLAG_DEFAULT | |
418 | (ypan) ? FBINFO_HWACCEL_YPAN : 0; | 418 | (ypan) ? FBINFO_HWACCEL_YPAN : 0; |
419 | 419 | ||
420 | if (!ypan) | ||
421 | info->fbops->fb_pan_display = NULL; | ||
422 | |||
420 | if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) { | 423 | if (fb_alloc_cmap(&info->cmap, 256, 0) < 0) { |
421 | err = -ENOMEM; | 424 | err = -ENOMEM; |
422 | goto err; | 425 | goto err; |