From: Ben Dooks Date: Tue, 16 Oct 2007 08:28:38 +0000 (-0700) Subject: sm501fb: Call fb suspend function during suspend and resume X-Git-Tag: v2.6.24-rc1~943 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f22e521f2992031fdedb661f2a647cafd2e45fa1;p=~emulex%2Finfiniband.git sm501fb: Call fb suspend function during suspend and resume Call the fb_set_suspend() over suspend and resume. Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c index fc0cdc83036..d97edd7a6e4 100644 --- a/drivers/video/sm501fb.c +++ b/drivers/video/sm501fb.c @@ -28,6 +28,7 @@ #include #include #include +#include #include #include @@ -1697,6 +1698,10 @@ static int sm501fb_suspend_fb(struct sm501fb_info *info, /* blank the relevant interface to ensure unit power minimised */ (par->ops.fb_blank)(FB_BLANK_POWERDOWN, fbi); + acquire_console_sem(); + fb_set_suspend(fbi, 1); + release_console_sem(); + return 0; err_nocursor: @@ -1732,6 +1737,10 @@ static void sm501fb_resume_fb(struct sm501fb_info *info, memcpy_toio(par->cursor.k_addr, par->store_cursor, par->cursor.size); + acquire_console_sem(); + fb_set_suspend(fbi, 0); + release_console_sem(); + vfree(par->store_fb); vfree(par->store_cursor); }