Commit 78b9c353 authored by Sachin Kamat's avatar Sachin Kamat Committed by Dave Airlie

drm: Add misssing static storage class specifier in drm_fb_helper.c file

Fixes the following sparse warning:
drivers/gpu/drm/drm_fb_helper.c:239:6: warning:
symbol 'drm_fb_helper_force_kernel_mode' was not declared. Should it be static?
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent ea7f7abc
...@@ -236,7 +236,7 @@ bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper) ...@@ -236,7 +236,7 @@ bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper)
} }
EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode); EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode);
bool drm_fb_helper_force_kernel_mode(void) static bool drm_fb_helper_force_kernel_mode(void)
{ {
bool ret, error = false; bool ret, error = false;
struct drm_fb_helper *helper; struct drm_fb_helper *helper;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment