diff mbox

drm/i915: Fix misleading driver debug message

Message ID 1466763836-27772-1-git-send-email-frank.binns@imgtec.com (mailing list archive)
State New, archived
Headers show

Commit Message

Frank Binns June 24, 2016, 10:23 a.m. UTC
Stop claiming that UMS support is disabled when it's not actually
supported anymore.

Signed-off-by: Frank Binns <frank.binns@imgtec.com>
---
 drivers/gpu/drm/i915/i915_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Chris Wilson June 24, 2016, 10:56 a.m. UTC | #1
On Fri, Jun 24, 2016 at 11:23:56AM +0100, Frank Binns wrote:
> Stop claiming that UMS support is disabled when it's not actually
> supported anymore.
> 
> Signed-off-by: Frank Binns <frank.binns@imgtec.com>

But not technically untrue!
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk.>

Since I have a series touching this code, I'll pull it into that.
-Chris
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 3eb47fb..22ded6b 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -1807,7 +1807,7 @@  static int __init i915_init(void)
 
 	if (!(driver.driver_features & DRIVER_MODESET)) {
 		/* Silently fail loading to not upset userspace. */
-		DRM_DEBUG_DRIVER("KMS and UMS disabled.\n");
+		DRM_DEBUG_DRIVER("KMS disabled.\n");
 		return 0;
 	}