From: kbuild test robot Date: Wed, 25 Jul 2018 17:57:00 +0000 (-0400) Subject: media: omap2: omapfb: fix boolreturn.cocci warnings X-Git-Tag: v4.19-rc1~137^2~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=73fc60aa6386ecb4201908be42241dcbd790d556;p=thirdparty%2Flinux.git media: omap2: omapfb: fix boolreturn.cocci warnings drivers/video/fbdev/omap2/omapfb/omapfb-main.c:290:9-10: WARNING: return of 0/1 in function 'cmp_var_to_colormode' with return type bool Return statements in functions returning bool should use true/false instead of 1/0. Generated by: scripts/coccinelle/misc/boolreturn.cocci Signed-off-by: kbuild test robot Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/video/fbdev/omap2/omapfb/omapfb-main.c b/drivers/video/fbdev/omap2/omapfb/omapfb-main.c index e08e5664e330f..3e7887c53d7c2 100644 --- a/drivers/video/fbdev/omap2/omapfb/omapfb-main.c +++ b/drivers/video/fbdev/omap2/omapfb/omapfb-main.c @@ -287,7 +287,7 @@ static bool cmp_var_to_colormode(struct fb_var_screeninfo *var, var->red.length == 0 || var->blue.length == 0 || var->green.length == 0) - return 0; + return false; return var->bits_per_pixel == color->bits_per_pixel && cmp_component(&var->red, &color->red) &&