From: Peter Meerwald Date: Fri, 30 Jan 2015 07:59:46 +0000 (+0100) Subject: omapfb: Return error code when applying overlay settings fails X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~8771^2^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=811fbb1f580ca024a0af603dfaef08a4d1dcb5ef;p=mirror_ubuntu-artful-kernel.git omapfb: Return error code when applying overlay settings fails the check of the return code is missing, user space does not get notified about the error condition: omapdss OVERLAY error: overlay 2 horizontally not inside the display area (403 + 800 >= 800) omapdss APPLY error: failed to apply settings: illegal configuration. Signed-off-by: Peter Meerwald Signed-off-by: Tomi Valkeinen --- diff --git a/drivers/video/fbdev/omap2/omapfb/omapfb-ioctl.c b/drivers/video/fbdev/omap2/omapfb/omapfb-ioctl.c index 146b6f5428db..9ddfdd63b84c 100644 --- a/drivers/video/fbdev/omap2/omapfb/omapfb-ioctl.c +++ b/drivers/video/fbdev/omap2/omapfb/omapfb-ioctl.c @@ -137,8 +137,11 @@ static int omapfb_setup_plane(struct fb_info *fbi, struct omapfb_plane_info *pi) goto undo; } - if (ovl->manager) - ovl->manager->apply(ovl->manager); + if (ovl->manager) { + r = ovl->manager->apply(ovl->manager); + if (r) + goto undo; + } if (pi->enabled) { r = ovl->enable(ovl);