aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorKirill A. Shutemov <kirill.shutemov@linux.intel.com>2012-03-08 11:08:45 -0500
committerDave Airlie <airlied@redhat.com>2012-03-10 08:06:08 -0500
commit15308e23fb1bbb485be648b379717cecdc8a0da1 (patch)
treeffca808b802e9cdf3882e7d7af97a7c6a9f00937 /drivers/gpu/drm
parent1fc93332cd2ba59a5fd5b3c4369fc62c724ddae6 (diff)
gma500: mark psb_driver_device_is_agp() and psb_driver_preclose() as static
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/gma500/psb_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500/psb_drv.c
index fb1f5378c0fe..fc09f6ab214a 100644
--- a/drivers/gpu/drm/gma500/psb_drv.c
+++ b/drivers/gpu/drm/gma500/psb_drv.c
@@ -410,7 +410,7 @@ out_err:
410 return ret; 410 return ret;
411} 411}
412 412
413int psb_driver_device_is_agp(struct drm_device *dev) 413static int psb_driver_device_is_agp(struct drm_device *dev)
414{ 414{
415 return 0; 415 return 0;
416} 416}
@@ -601,7 +601,7 @@ static long psb_unlocked_ioctl(struct file *filp, unsigned int cmd,
601/* When a client dies: 601/* When a client dies:
602 * - Check for and clean up flipped page state 602 * - Check for and clean up flipped page state
603 */ 603 */
604void psb_driver_preclose(struct drm_device *dev, struct drm_file *priv) 604static void psb_driver_preclose(struct drm_device *dev, struct drm_file *priv)
605{ 605{
606} 606}
607 607