Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Add HDAUDIOVERBOSE



details:   https://anonhg.NetBSD.org/src/rev/a813f2f455f9
branches:  trunk
changeset: 332398:a813f2f455f9
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Sep 19 17:30:03 2014 +0000

description:
Add HDAUDIOVERBOSE

diffstat:

 sys/arch/amd64/conf/ALL       |  5 +++--
 sys/arch/amd64/conf/GENERIC   |  5 +++--
 sys/arch/amd64/conf/XEN3_DOM0 |  3 ++-
 sys/arch/i386/conf/ALL        |  5 +++--
 sys/arch/i386/conf/GENERIC    |  5 +++--
 sys/arch/i386/conf/XEN3_DOM0  |  3 ++-
 6 files changed, 16 insertions(+), 10 deletions(-)

diffs (138 lines):

diff -r 09072733d755 -r a813f2f455f9 sys/arch/amd64/conf/ALL
--- a/sys/arch/amd64/conf/ALL   Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/amd64/conf/ALL   Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ALL,v 1.19 2014/09/19 15:24:24 christos Exp $
+# $NetBSD: ALL,v 1.20 2014/09/19 17:30:03 christos Exp $
 # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
 #
 # ALL machine description file
@@ -17,7 +17,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "ALL-$Revision: 1.19 $"
+#ident                 "ALL-$Revision: 1.20 $"
 
 maxusers       64              # estimated number of users
 
@@ -262,6 +262,7 @@
 options        PNPBIOSVERBOSE  # verbose PnP BIOS messages
 #options       PNPBIOSDEBUG    # more fulsome PnP BIOS debugging messages
 options        MCAVERBOSE      # verbose MCA device autoconfig messages
+options        HDAUDIOVERBOSE  # verbose HDAUDIO driver messages
 
 options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
 
diff -r 09072733d755 -r a813f2f455f9 sys/arch/amd64/conf/GENERIC
--- a/sys/arch/amd64/conf/GENERIC       Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/amd64/conf/GENERIC       Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.398 2014/09/19 15:24:24 christos Exp $
+# $NetBSD: GENERIC,v 1.399 2014/09/19 17:30:03 christos Exp $
 #
 # GENERIC machine description file
 #
@@ -22,7 +22,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.398 $"
+#ident                 "GENERIC-$Revision: 1.399 $"
 
 maxusers       64              # estimated number of users
 
@@ -215,6 +215,7 @@
 #options       PCMCIAVERBOSE   # verbose PCMCIA configuration messages
 options        SCSIVERBOSE     # human readable SCSI error messages
 #options       USBVERBOSE      # verbose USB device autoconfig messages
+#options       HDAUDIOVERBOSE  # verbose HDAUDIO driver messages
 
 options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
 
diff -r 09072733d755 -r a813f2f455f9 sys/arch/amd64/conf/XEN3_DOM0
--- a/sys/arch/amd64/conf/XEN3_DOM0     Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/amd64/conf/XEN3_DOM0     Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: XEN3_DOM0,v 1.107 2014/09/19 15:24:24 christos Exp $
+# $NetBSD: XEN3_DOM0,v 1.108 2014/09/19 17:30:03 christos Exp $
 
 include        "arch/amd64/conf/std.xen"
 
@@ -219,6 +219,7 @@
 #options       PCI_INTR_FIXUP          # fixup PCI interrupt routing
 #options       PCIVERBOSE              # verbose PCI device autoconfig messages
 #options       USBVERBOSE              # verbose USB device autoconfig messages
+#options       HDAUDIOVERBOSE          # verbose HDAUDIO driver messages
 
 ioapic*        at mainbus? apid ?
 
diff -r 09072733d755 -r a813f2f455f9 sys/arch/i386/conf/ALL
--- a/sys/arch/i386/conf/ALL    Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/i386/conf/ALL    Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ALL,v 1.385 2014/09/19 15:24:24 christos Exp $
+# $NetBSD: ALL,v 1.386 2014/09/19 17:30:03 christos Exp $
 # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
 #
 # ALL machine description file
@@ -17,7 +17,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "ALL-$Revision: 1.385 $"
+#ident                 "ALL-$Revision: 1.386 $"
 
 maxusers       64              # estimated number of users
 
@@ -261,6 +261,7 @@
 options        PNPBIOSVERBOSE  # verbose PnP BIOS messages
 #options       PNPBIOSDEBUG    # more fulsome PnP BIOS debugging messages
 options        MCAVERBOSE      # verbose MCA device autoconfig messages
+options        HDAUDIOVERBOSE  # verbose HDAUDIO driver messages
 
 options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
 
diff -r 09072733d755 -r a813f2f455f9 sys/arch/i386/conf/GENERIC
--- a/sys/arch/i386/conf/GENERIC        Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/i386/conf/GENERIC        Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.1113 2014/09/19 15:24:24 christos Exp $
+# $NetBSD: GENERIC,v 1.1114 2014/09/19 17:30:03 christos Exp $
 #
 # GENERIC machine description file
 #
@@ -22,7 +22,7 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.1113 $"
+#ident                 "GENERIC-$Revision: 1.1114 $"
 
 maxusers       64              # estimated number of users
 
@@ -242,6 +242,7 @@
 #options       PNPBIOSVERBOSE  # verbose PnP BIOS messages
 #options       PNPBIOSDEBUG    # more fulsome PnP BIOS debugging messages
 #options       MCAVERBOSE      # verbose MCA device autoconfig messages
+#options       HDAUDIOVERBOSE  # verbose HDAUDIO driver messages
 
 options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
 
diff -r 09072733d755 -r a813f2f455f9 sys/arch/i386/conf/XEN3_DOM0
--- a/sys/arch/i386/conf/XEN3_DOM0      Fri Sep 19 17:29:01 2014 +0000
+++ b/sys/arch/i386/conf/XEN3_DOM0      Fri Sep 19 17:30:03 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: XEN3_DOM0,v 1.89 2014/09/19 15:24:24 christos Exp $
+#      $NetBSD: XEN3_DOM0,v 1.90 2014/09/19 17:30:03 christos Exp $
 #
 #      XEN3_0: Xen 3.0 domain0 kernel
 
@@ -178,6 +178,7 @@
 #options       PCI_CONFIG_DUMP # verbosely dump PCI config space
 options        SCSIVERBOSE     # human readable SCSI error messages
 #options       USBVERBOSE      # verbose USB device autoconfig messages
+#options       HDAUDIOVERBOSE  # verbose HDAUDIO driver messages
 
 options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
 #options       NFS_BOOT_BOOTSTATIC



Home | Main Index | Thread Index | Old Index