aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRashika <[email protected]>2014-01-06 22:11:59 +0530
committerDave Airlie <[email protected]>2014-01-14 13:04:33 +1000
commit902f4a7400df915ccd84c87e1cc89a2e89f96ceb (patch)
treeb1f31ef333b30122197904ecdf02f9d989565b2b
parent0662e4c2c2fbddd10cdec05fe68eb2c03e6dbcc9 (diff)
drivers: gpu: Mark function as static in sis_drv.c
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 <[email protected]> Reviewed-by: Josh Triplett <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r--drivers/gpu/drm/sis/sis_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sis/sis_drv.c b/drivers/gpu/drm/sis/sis_drv.c
index 4383b74a3aa4..756f787b7143 100644
--- a/drivers/gpu/drm/sis/sis_drv.c
+++ b/drivers/gpu/drm/sis/sis_drv.c
@@ -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;