sm501fb: suspend and resume fb if it exists
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Thu, 9 Nov 2017 17:09:31 +0000 (18:09 +0100)
committerBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Thu, 9 Nov 2017 17:09:31 +0000 (18:09 +0100)
There are cases when panel and crt both are not defined and only one of
them is defined and initialized. In such cases, suspend or resume it
only if it is defined.

Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
drivers/video/fbdev/sm501fb.c

index 577a48339bab159747f0cc4df764bf7e532a9c5b..49233c1926620b0d39ba86e435c9d65c664c750f 100644 (file)
@@ -2101,6 +2101,9 @@ static int sm501fb_suspend_fb(struct sm501fb_info *info,
        struct fb_info *fbi = info->fb[head];
        struct sm501fb_par *par = fbi->par;
 
+       if (!fbi)
+               return 0;
+
        if (par->screen.size == 0)
                return 0;
 
@@ -2148,6 +2151,9 @@ static void sm501fb_resume_fb(struct sm501fb_info *info,
        struct fb_info *fbi = info->fb[head];
        struct sm501fb_par *par = fbi->par;
 
+       if (!fbi)
+               return;
+
        if (par->screen.size == 0)
                return;