diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-25 08:02:59 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-09-26 04:52:31 -0400 |
commit | bb1d2da7db7fcb25407618d9078091b575490d89 (patch) | |
tree | 2d729e86fc7bd1c5b1e387217c466f37789cd57c /drivers/video/riva | |
parent | cd1979b670fafed0130e0a3d0eddd7bc6a143f79 (diff) |
video: riva: Remove incorrect checks
'xoffset' and 'yoffset' are unsigned and hence cannot be less than 0.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/riva')
-rw-r--r-- | drivers/video/riva/fbdev.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/video/riva/fbdev.c b/drivers/video/riva/fbdev.c index 9536715b5a1b..a5514acd2ac6 100644 --- a/drivers/video/riva/fbdev.c +++ b/drivers/video/riva/fbdev.c | |||
@@ -1185,11 +1185,6 @@ static int rivafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) | |||
1185 | if (rivafb_do_maximize(info, var, nom, den) < 0) | 1185 | if (rivafb_do_maximize(info, var, nom, den) < 0) |
1186 | return -EINVAL; | 1186 | return -EINVAL; |
1187 | 1187 | ||
1188 | if (var->xoffset < 0) | ||
1189 | var->xoffset = 0; | ||
1190 | if (var->yoffset < 0) | ||
1191 | var->yoffset = 0; | ||
1192 | |||
1193 | /* truncate xoffset and yoffset to maximum if too high */ | 1188 | /* truncate xoffset and yoffset to maximum if too high */ |
1194 | if (var->xoffset > var->xres_virtual - var->xres) | 1189 | if (var->xoffset > var->xres_virtual - var->xres) |
1195 | var->xoffset = var->xres_virtual - var->xres - 1; | 1190 | var->xoffset = var->xres_virtual - var->xres - 1; |