Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd1979b6 authored by Sachin Kamat's avatar Sachin Kamat Committed by Tomi Valkeinen
Browse files

video: aty: Remove incorrect checks



'xoffset' and 'yoffset' are unsigned and hence cannot be less than 0.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 8639fac5
Loading
Loading
Loading
Loading
+0 −5
Original line number Original line Diff line number Diff line
@@ -819,11 +819,6 @@ static int radeonfb_check_var (struct fb_var_screeninfo *var, struct fb_info *in
	if (v.xres_virtual < v.xres)
	if (v.xres_virtual < v.xres)
		v.xres = v.xres_virtual;
		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)
        if (v.xoffset > v.xres_virtual - v.xres)
                v.xoffset = v.xres_virtual - v.xres - 1;
                v.xoffset = v.xres_virtual - v.xres - 1;