Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2/i915drm Remove (bad) debugging message...



details:   https://anonhg.NetBSD.org/src/rev/b5ea64a3005e
branches:  trunk
changeset: 796080:b5ea64a3005e
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon May 19 14:57:37 2014 +0000

description:
Remove (bad) debugging message that crept into i915_gem_gtt_init.

diffstat:

 sys/external/bsd/drm2/i915drm/i915_gem_gtt.c |  14 ++------------
 1 files changed, 2 insertions(+), 12 deletions(-)

diffs (35 lines):

diff -r 1c145fbfbdb6 -r b5ea64a3005e sys/external/bsd/drm2/i915drm/i915_gem_gtt.c
--- a/sys/external/bsd/drm2/i915drm/i915_gem_gtt.c      Mon May 19 14:55:46 2014 +0000
+++ b/sys/external/bsd/drm2/i915drm/i915_gem_gtt.c      Mon May 19 14:57:37 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i915_gem_gtt.c,v 1.9 2014/05/19 14:55:46 riastradh Exp $       */
+/*     $NetBSD: i915_gem_gtt.c,v 1.10 2014/05/19 14:57:37 riastradh Exp $      */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i915_gem_gtt.c,v 1.9 2014/05/19 14:55:46 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i915_gem_gtt.c,v 1.10 2014/05/19 14:57:37 riastradh Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -83,16 +83,6 @@
        if (ret)
                goto fail0;
 
-       aprint_error_dev(dev->dev, "GTT:\n"
-           "- gma_bus_addr %"PRIxMAX"\n"
-           "- gtt_mappable_entries %"PRIxMAX"\n"
-           "- stolen_size %"PRIxMAX"\n"
-           "- gtt_total_entries %"PRIxMAX"\n",
-           (uintmax_t)gtt->gma_bus_addr,
-           (uintmax_t)gtt->gtt_mappable_entries,
-           (uintmax_t)gtt->stolen_size,
-           (uintmax_t)gtt->gtt_total_entries);
-
        /*
         * The GTT entries are limited to 32-bit physical addresses up
         * until gen4, at and after which they are limited to 36-bit



Home | Main Index | Thread Index | Old Index