2008-12-18 23:00:40

by Hannes Eder

[permalink] [raw]
Subject: [PATCH 5/6] drm/i915: comment out unused function 'i915_driver_firstopen'

Fix this warning:

drivers/gpu/drm/i915/i915_dma.c:1011: warning: 'i915_driver_firstopen' defined but not used

Signed-off-by: Hannes Eder <[email protected]>
---
drivers/gpu/drm/i915/i915_dma.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 36a6884..10f3fe6 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1007,12 +1007,14 @@ void i915_master_destroy(struct drm_device *dev, struct drm_master *master)
}


+#ifdef UNUSED
static int i915_driver_firstopen(struct drm_device *dev)
{
if (drm_core_check_feature(dev, DRIVER_MODESET))
return 0;
return 0;
}
+#endif /* UNUSED */

/**
* i915_driver_load - setup chip and create an initial config
--
1.5.6.3