Commit 9767e5dc authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fbdev: Vesa Fbdev update fix

From: Geert Uytterhoeven <geert@linux-m68k.org>

On Sun, 25 Apr 2004, James Simmons wrote:
> This patch migrates the Vesa Framebuffer driver over to the
> framebuffer_alloc/framebuffer_release api. It also fixes the error
> handling paths. The mtrr issue that Geert brought up has been fixed.
> With your approval Geert, Ben please apply this patch.

> +	/* Set video size according to vram boot option */
> +	if (vram && vram * 1024 * 1024 != vesafb_fix.smem_len)
> +		vesafb_fix.smem_len = vram * 1024 * 1024;

The second part of the test can be removed. The rest looks OK to me.
parent b5f86b85
......@@ -238,7 +238,7 @@ static int __init vesafb_probe(struct device *device)
vesafb_fix.smem_len = screen_info.lfb_size * 65536;
/* Set video size according to vram boot option */
if (vram && vram * 1024 * 1024 != vesafb_fix.smem_len)
if (vram)
vesafb_fix.smem_len = vram * 1024 * 1024;
vesafb_fix.visual = (vesafb_defined.bits_per_pixel == 8) ?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment