Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

video: fbdev: savage: fix indentation issue

The indentation in the if statement is not indented correctly, fix
this with extra level of indentation.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Cc: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>

authored by

Colin Ian King and committed by
Bartlomiej Zolnierkiewicz
3f984342 a7ae716e

+3 -3
+3 -3
drivers/video/fbdev/savage/savagefb_driver.c
··· 2155 2155 2156 2156 err = fb_alloc_cmap(&info->cmap, NR_PALETTE, 0); 2157 2157 if (!err) 2158 - info->flags |= FBINFO_HWACCEL_COPYAREA | 2159 - FBINFO_HWACCEL_FILLRECT | 2160 - FBINFO_HWACCEL_IMAGEBLIT; 2158 + info->flags |= FBINFO_HWACCEL_COPYAREA | 2159 + FBINFO_HWACCEL_FILLRECT | 2160 + FBINFO_HWACCEL_IMAGEBLIT; 2161 2161 } 2162 2162 #endif 2163 2163 return err;