From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Petr Vandrovec" Subject: Re: [TRIVIAL PATCH] FBDEV: Small impact patch for fbdev Date: Wed, 11 Dec 2002 13:20:34 +0100 Sender: linux-kernel-owner@vger.kernel.org Message-ID: Mime-Version: 1.0 Content-Transfer-Encoding: 7BIT Return-path: List-Id: Cc: Linux Fbdev development list , Linux Kernel Mailing List , adaplas@pol.net On 10 Dec 02 at 21:59, James Simmons wrote: > Fixed. Actually I used the following code. > > int fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info) > { > int xoffset = var->xoffset; > int yoffset = var->yoffset; > int err; > > if (xoffset < 0 || yoffset < 0 || info->fbops->fb_pan_display || I'm probably missing something important, but do not you want !info->fbops->fb_pan_display instead? Petr > xoffset + info->var.xres > info->var.xres_virtual || > yoffset + info->var.yres > info->var.yres_virtual) > return -EINVAL; > if ((err = info->fbops->fb_pan_display(var, info))) > return err; > info->var.xoffset = var->xoffset; > info->var.yoffset = var->yoffset; > if (var->vmode & FB_VMODE_YWRAP)