Module Name:    src
Committed By:   isaki
Date:           Tue Aug 29 06:38:49 UTC 2017

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

Log Message:
Fix two typos.  pfil -> rfil for recording.
One was introduced a month ago and the other was 12 years ago.


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 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.56 src/sys/dev/ic/am7930.c:1.57
--- src/sys/dev/ic/am7930.c:1.56	Thu Jul 27 23:39:37 2017
+++ src/sys/dev/ic/am7930.c	Tue Aug 29 06:38:49 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: am7930.c,v 1.56 2017/07/27 23:39:37 nat Exp $	*/
+/*	$NetBSD: am7930.c,v 1.57 2017/08/29 06:38:49 isaki Exp $	*/
 
 /*
  * Copyright (c) 1995 Rolf Grossmann
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: am7930.c,v 1.56 2017/07/27 23:39:37 nat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: am7930.c,v 1.57 2017/08/29 06:38:49 isaki Exp $");
 
 #include "audio.h"
 #if NAUDIO > 0
@@ -265,9 +265,9 @@ am7930_set_params(void *addr, int setmod
 			hw = *r;
 			hw.encoding = AUDIO_ENCODING_NONE;
 			hw.precision = 8;
-			pfil->append(pfil, null_filter, &hw);
+			rfil->append(rfil, null_filter, &hw);
 			hw.precision *= sc->sc_glue->factor;
-			pfil->append(rfil, sc->sc_glue->input_conv, &hw);
+			rfil->append(rfil, sc->sc_glue->input_conv, &hw);
 		}
 	    	if (r->encoding == AUDIO_ENCODING_SLINEAR) {
 			hw = *r;

Reply via email to