aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2012-03-02 16:51:25 +0530
committerTushar Behera <tushar.behera@linaro.org>2012-03-07 09:21:43 +0530
commitb32a205e3a4a73282594342b7066bb87673e9121 (patch)
treeedc1e7db88ad22092e7c78cb3fcdcb8ecc02850c
parenta146730cc4fadbd62dae3785e42bf5f2c85ec731 (diff)
drm/mali: Fix compile time warningssamsung-lt-v3.3-rc3-2
Fix parameter listing in following functions - mali_drm_preclose and mali_drm_suspend. Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--drivers/gpu/drm/mali/mali_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/mali/mali_drv.c b/drivers/gpu/drm/mali/mali_drv.c
index 5eac7aa41705..ec6fdcacb7df 100644
--- a/drivers/gpu/drm/mali/mali_drv.c
+++ b/drivers/gpu/drm/mali/mali_drv.c
@@ -29,7 +29,7 @@ static struct pci_driver mali_pci_driver = {
};
#endif
-void mali_drm_preclose(struct drm_device *dev)
+void mali_drm_preclose(struct drm_device *dev, struct drm_file *file_priv)
{
}
@@ -37,7 +37,7 @@ void mali_drm_lastclose(struct drm_device *dev)
{
}
-static int mali_drm_suspend(struct drm_device *dev)
+static int mali_drm_suspend(struct drm_device *dev, pm_message_t state)
{
return 0;
}