浏览代码

[PATCH] vesafb: Trim vesafb_pan_display

Remove error checking from vesafb_pan_display.  This is guaranteed to be done
by the core layer.

Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Antonino A. Daplas 19 年之前
父节点
当前提交
f845fbac4e
共有 1 个文件被更改,包括 0 次插入9 次删除
  1. 0 9
      drivers/video/vesafb.c

+ 0 - 9
drivers/video/vesafb.c

@@ -66,15 +66,6 @@ static int vesafb_pan_display(struct fb_var_screeninfo *var,
 #ifdef __i386__
 #ifdef __i386__
 	int offset;
 	int offset;
 
 
-	if (!ypan)
-		return -EINVAL;
-	if (var->xoffset)
-		return -EINVAL;
-	if (var->yoffset > var->yres_virtual)
-		return -EINVAL;
-	if ((ypan==1) && var->yoffset+var->yres > var->yres_virtual)
-		return -EINVAL;
-
 	offset = (var->yoffset * info->fix.line_length + var->xoffset) / 4;
 	offset = (var->yoffset * info->fix.line_length + var->xoffset) / 4;
 
 
         __asm__ __volatile__(
         __asm__ __volatile__(