Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Dec 2020 08:37:40 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 251727] [sound] [snd_hda] After update to r368166 no sound recording with internal microphone
Message-ID:  <bug-251727-227-1dHznSm4CT@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-251727-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-251727-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251727

--- Comment #3 from Matthias Apitz <guru@unixarea.de> ---

I have nailed down the problem and locally fixed it with this:

# svn diff sys/dev/sound/pci/hda/hdaa.c
Index: sys/dev/sound/pci/hda/hdaa.c
===================================================================
--- sys/dev/sound/pci/hda/hdaa.c        (revisión: 368166)
+++ sys/dev/sound/pci/hda/hdaa.c        (copia de trabajo)
@@ -6598,6 +6598,7 @@
        devinfo->newgpo = -1;
        callout_init(&devinfo->poll_jack, 1);
        devinfo->poll_ival = hz;
+       devinfo->init_clear = 1;    /* added by guru@unixarea.de */

        hdaa_lock(devinfo);
        res = hda_command(dev,

because there seems to be no code to set devinfo->init_clear from
the device.hints(5) file;

-- 
You are receiving this mail because:
You are the assignee for the bug.

help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-251727-227-1dHznSm4CT>