svn commit: r230554 - head/sys/dev/sound/pci/hda

Alexander Motin mav at FreeBSD.org
Wed Jan 25 20:54:16 UTC 2012


Author: mav
Date: Wed Jan 25 20:54:16 2012
New Revision: 230554
URL: http://svn.freebsd.org/changeset/base/230554

Log:
  Oops, fix the loader tunable name added in r230551.

Modified:
  head/sys/dev/sound/pci/hda/hdaa.c

Modified: head/sys/dev/sound/pci/hda/hdaa.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdaa.c	Wed Jan 25 20:54:09 2012	(r230553)
+++ head/sys/dev/sound/pci/hda/hdaa.c	Wed Jan 25 20:54:16 2012	(r230554)
@@ -6685,8 +6685,8 @@ hdaa_pcm_attach(device_t dev)
 		    as, sizeof(as), hdaa_sysctl_32bit, "I",
 		    "Resolution of 32bit samples (20/24/32bit)");
 		pdevinfo->autorecsrc = 2;
-		resource_int_value(device_get_name(dev),
-		    device_get_unit(dev), "autosrc", &pdevinfo->autorecsrc);
+		resource_int_value(device_get_name(dev), device_get_unit(dev),
+		    "rec.autosrc", &pdevinfo->autorecsrc);
 		SYSCTL_ADD_INT(&d->rec_sysctl_ctx,
 		    SYSCTL_CHILDREN(d->rec_sysctl_tree), OID_AUTO,
 		    "autosrc", CTLTYPE_INT | CTLFLAG_RW,


More information about the svn-src-head mailing list