Source-Changes-HG archive

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

[.joined/src/trunk]: .joined/src/sys/external/bsd/drm2/drm drm: Reduce defaul...



details:   https://anonhg.NetBSD.org/.joined/src/rev/5d990ee1890b
branches:  trunk
changeset: 359361:5d990ee1890b
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Fri Dec 31 17:22:45 2021 +0000

description:
drm: Reduce default debug level to driver-specific messages.

Let's make a liiiiittle less log spew by default with `boot -x'.

diffstat:

 sys/external/bsd/drm2/drm/drm_module.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 163f71aa0d7d -r 5d990ee1890b sys/external/bsd/drm2/drm/drm_module.c
--- a/sys/external/bsd/drm2/drm/drm_module.c    Fri Dec 31 17:22:35 2021 +0000
+++ b/sys/external/bsd/drm2/drm/drm_module.c    Fri Dec 31 17:22:45 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: drm_module.c,v 1.28 2021/12/19 12:43:37 riastradh Exp $        */
+/*     $NetBSD: drm_module.c,v 1.29 2021/12/31 17:22:45 riastradh Exp $        */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_module.c,v 1.28 2021/12/19 12:43:37 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_module.c,v 1.29 2021/12/31 17:22:45 riastradh Exp $");
 
 #include <sys/types.h>
 #include <sys/condvar.h>
@@ -124,7 +124,7 @@
 #endif
 
        if (ISSET(boothowto, AB_DEBUG))
-               __drm_debug = DRM_UT_CORE | DRM_UT_DRIVER | DRM_UT_KMS | DRM_UT_ATOMIC;
+               __drm_debug = DRM_UT_DRIVER;
 
        spin_lock_init(&drm_minor_lock);
        idr_init(&drm_minors_idr);



Home | Main Index | Thread Index | Old Index