diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-01 13:45:32 +0200 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-08-24 02:01:15 +0200 |
commit | 78b9c3537e9c88ea3be2224343d2d08d4d2d4e4d (patch) | |
tree | fbbabe84c4daa685fe2d3d0113b7500cedeca699 /drivers/gpu/drm/drm_fb_helper.c | |
parent | drm: Add missing static storage class specifier in drm_irq.c file (diff) | |
download | linux-78b9c3537e9c88ea3be2224343d2d08d4d2d4e4d.tar.xz linux-78b9c3537e9c88ea3be2224343d2d08d4d2d4e4d.zip |
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: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_fb_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_fb_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index f546d1e8af82..061d26dd0751 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c @@ -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); -bool drm_fb_helper_force_kernel_mode(void) +static bool drm_fb_helper_force_kernel_mode(void) { bool ret, error = false; struct drm_fb_helper *helper; |