From: Colin Ian King Date: Wed, 28 Mar 2018 14:34:27 +0000 (+0200) Subject: fbdev: aty: fix missing indentation in if statement X-Git-Tag: v4.19~108^2~109 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e393cb1cd93c398a16ad28252a8f9b8e9d11721a;p=platform%2Fkernel%2Flinux-rpi.git fbdev: aty: fix missing indentation in if statement There is a missing indentation following an if statement, fix this. Detected by Coccinelle: drivers/video/fbdev/aty/mach64_ct.c:183:2-15: code aligned with following code on line 184 Signed-off-by: Colin Ian King Cc: Philippe Ombredanne Cc: Thomas Gleixner Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/video/fbdev/aty/mach64_ct.c b/drivers/video/fbdev/aty/mach64_ct.c index 7d3bd72..74a62aa 100644 --- a/drivers/video/fbdev/aty/mach64_ct.c +++ b/drivers/video/fbdev/aty/mach64_ct.c @@ -180,7 +180,7 @@ static int aty_dsp_gt(const struct fb_info *info, u32 bpp, struct pll_ct *pll) dsp_on = ((multiplier << vshift) + divider) / divider; tmp = ((ras_multiplier << xshift) + ras_divider) / ras_divider; if (dsp_on < tmp) - dsp_on = tmp; + dsp_on = tmp; dsp_on = dsp_on + (tmp * 2) + (pll->xclkpagefaultdelay << xshift); }