drm/udl: Add missing static storage class specifiers in udl_fb.c
authorSachin Kamat <sachin.kamat@linaro.org>
Sat, 22 Sep 2012 06:30:03 +0000 (06:30 +0000)
committerDave Airlie <airlied@redhat.com>
Mon, 1 Oct 2012 23:24:41 +0000 (09:24 +1000)
Fixes the following sparse warnings:
drivers/gpu/drm/udl/udl_fb.c:360:6: warning:
symbol 'udl_crtc_fb_gamma_set' was not declared. Should it be static?
drivers/gpu/drm/udl/udl_fb.c:365:6: warning:
symbol 'udl_crtc_fb_gamma_get' was not declared. Should it be static?

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/udl/udl_fb.c

index b8c00ed3305159053da066dc95a1831cc6427ba9..0e47e9614b780fc47269bfe63b31bc52682d0b39 100644 (file)
@@ -357,12 +357,12 @@ static struct fb_ops udlfb_ops = {
        .fb_release = udl_fb_release,
 };
 
-void udl_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
+static void udl_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
                           u16 blue, int regno)
 {
 }
 
-void udl_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
+static void udl_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
                             u16 *blue, int regno)
 {
        *red = 0;