]> Pileus Git - ~andy/linux/commitdiff
drivers: gpu: Mark function as static in sis_drv.c
authorRashika <rashika.kheria@gmail.com>
Mon, 6 Jan 2014 16:41:59 +0000 (22:11 +0530)
committerDave Airlie <airlied@redhat.com>
Tue, 14 Jan 2014 03:04:33 +0000 (13:04 +1000)
Mark function as static because it is not used outside the file
drm/sis/sis_drv.c.

This eliminates the following warning in drm/sis/sis_drv.c:
drivers/gpu/drm/sis/sis_drv.c:97:6: warning: no previous prototype for ‘sis_driver_postclose’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/sis/sis_drv.c

index 4383b74a3aa46f480ac3c118e3a113812fdff9de..756f787b71439ac42af2b6a723916207165b2382 100644 (file)
@@ -94,7 +94,7 @@ static int sis_driver_open(struct drm_device *dev, struct drm_file *file)
        return 0;
 }
 
-void sis_driver_postclose(struct drm_device *dev, struct drm_file *file)
+static void sis_driver_postclose(struct drm_device *dev, struct drm_file *file)
 {
        struct sis_file_private *file_priv = file->driver_priv;