mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 20:21:57 +00:00
drivers/video/fbdev/sis/sis_main.c: remove unnecessary test on unsigned value
unsigned value is never < 0 Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> Cc: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
8c5a6d835e
commit
7f8b9db7dd
@ -1572,10 +1572,6 @@ sisfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
|
||||
/* Adapt RGB settings */
|
||||
sisfb_bpp_to_var(ivideo, var);
|
||||
|
||||
/* Sanity check for offsets */
|
||||
if(var->xoffset < 0) var->xoffset = 0;
|
||||
if(var->yoffset < 0) var->yoffset = 0;
|
||||
|
||||
if(var->xres > var->xres_virtual)
|
||||
var->xres_virtual = var->xres;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user