From: Sachin Kamat Date: Wed, 25 Sep 2013 12:02:58 +0000 (+0530) Subject: video: aty: Remove incorrect checks X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=cd1979b670fafed0130e0a3d0eddd7bc6a143f79;p=deliverable%2Flinux.git video: aty: Remove incorrect checks 'xoffset' and 'yoffset' are unsigned and hence cannot be less than 0. Signed-off-by: Sachin Kamat Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/aty/radeon_base.c b/drivers/video/aty/radeon_base.c index 1e30b2b3e79f..26d80a4486fb 100644 --- a/drivers/video/aty/radeon_base.c +++ b/drivers/video/aty/radeon_base.c @@ -819,11 +819,6 @@ static int radeonfb_check_var (struct fb_var_screeninfo *var, struct fb_info *in if (v.xres_virtual < v.xres) v.xres = v.xres_virtual; - if (v.xoffset < 0) - v.xoffset = 0; - if (v.yoffset < 0) - v.yoffset = 0; - if (v.xoffset > v.xres_virtual - v.xres) v.xoffset = v.xres_virtual - v.xres - 1;