]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
video: fbdev: savage: fix indentation issue
authorColin Ian King <colin.king@canonical.com>
Mon, 1 Apr 2019 15:46:54 +0000 (17:46 +0200)
committerBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Mon, 1 Apr 2019 15:46:54 +0000 (17:46 +0200)
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>
drivers/video/fbdev/savage/savagefb_driver.c

index c09d7426cd92505f9418d17ba852ea0aaef2fa0a..47b78f0138c382c1dfce9fb1afbcd46ad78c63a2 100644 (file)
@@ -2155,9 +2155,9 @@ static int savage_init_fb_info(struct fb_info *info, struct pci_dev *dev,
 
                err = fb_alloc_cmap(&info->cmap, NR_PALETTE, 0);
                if (!err)
-               info->flags |= FBINFO_HWACCEL_COPYAREA |
-                              FBINFO_HWACCEL_FILLRECT |
-                              FBINFO_HWACCEL_IMAGEBLIT;
+                       info->flags |= FBINFO_HWACCEL_COPYAREA |
+                                      FBINFO_HWACCEL_FILLRECT |
+                                      FBINFO_HWACCEL_IMAGEBLIT;
        }
 #endif
        return err;