Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/arch/macppc/dev Pull up following revision(s) (reques...



details:   https://anonhg.NetBSD.org/src/rev/269543572ca9
branches:  netbsd-8
changeset: 851335:269543572ca9
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Feb 04 12:43:57 2018 +0000

description:
Pull up following revision(s) (requested by sevan in ticket #520):
        sys/arch/macppc/dev/snapper.c: revision 1.42
Fix issue with audio being downpitched, thanks to <nat>
"it seems that snapper_init should be called before audio_attach_mi, as
snapper
init is setting the rate to 44100 after the hardware format has been
configured
by audio_attach_mi.
audio_attach_mi should be the last thing called during an attach of an audio
device so the audio device is ready to be configured when audio_attach_mi is
called."
Resolves PR port-macppc/52949

diffstat:

 sys/arch/macppc/dev/snapper.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 58402dcbfa79 -r 269543572ca9 sys/arch/macppc/dev/snapper.c
--- a/sys/arch/macppc/dev/snapper.c     Sun Feb 04 12:40:31 2018 +0000
+++ b/sys/arch/macppc/dev/snapper.c     Sun Feb 04 12:43:57 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: snapper.c,v 1.41 2017/03/31 08:38:13 msaitoh Exp $     */
+/*     $NetBSD: snapper.c,v 1.41.6.1 2018/02/04 12:43:57 martin Exp $  */
 /*     Id: snapper.c,v 1.11 2002/10/31 17:42:13 tsubai Exp     */
 /*     Id: i2s.c,v 1.12 2005/01/15 14:32:35 tsubai Exp         */
 
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: snapper.c,v 1.41 2017/03/31 08:38:13 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: snapper.c,v 1.41.6.1 2018/02/04 12:43:57 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/audioio.h>
@@ -839,10 +839,10 @@
                break;
        }
 
-       audio_attach_mi(&snapper_hw_if, sc, sc->sc_dev);
-
        /* ki2c_setmode(sc->sc_i2c, I2C_STDSUBMODE); */
        snapper_init(sc, sc->sc_node);
+
+       audio_attach_mi(&snapper_hw_if, sc, sc->sc_dev);
 }
 
 static int



Home | Main Index | Thread Index | Old Index