Module Name:    src
Committed By:   nat
Date:           Sun Jun 25 02:09:47 UTC 2017

Modified Files:
        src/sys/dev/ic: am7930.c

Log Message:
rfill and pfill mixed up.


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/ic/am7930.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/am7930.c
diff -u src/sys/dev/ic/am7930.c:1.53 src/sys/dev/ic/am7930.c:1.54
--- src/sys/dev/ic/am7930.c:1.53	Wed Dec 28 10:04:53 2016
+++ src/sys/dev/ic/am7930.c	Sun Jun 25 02:09:47 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: am7930.c,v 1.53 2016/12/28 10:04:53 nat Exp $	*/
+/*	$NetBSD: am7930.c,v 1.54 2017/06/25 02:09:47 nat Exp $	*/
 
 /*
  * Copyright (c) 1995 Rolf Grossmann
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: am7930.c,v 1.53 2016/12/28 10:04:53 nat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: am7930.c,v 1.54 2017/06/25 02:09:47 nat Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0
@@ -263,8 +263,8 @@ am7930_set_params(void *addr, int setmod
 	    r->encoding == AUDIO_ENCODING_SLINEAR) {
 		hw.encoding = AUDIO_ENCODING_ULAW;
 		pfil->req_size = rfil->req_size = 0;
-		pfil->append(rfil, mulaw_to_linear8, &hw);
-		rfil->append(pfil, linear8_to_mulaw, &hw);
+		rfil->append(rfil, mulaw_to_linear8, &hw);
+		pfil->append(pfil, linear8_to_mulaw, &hw);
 	}
 
 	return 0;

Reply via email to