Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic rfill and pfill mixed up.
details: https://anonhg.NetBSD.org/src/rev/f57afae99136
branches: trunk
changeset: 354671:f57afae99136
user: nat <nat%NetBSD.org@localhost>
date: Sun Jun 25 02:09:47 2017 +0000
description:
rfill and pfill mixed up.
diffstat:
sys/dev/ic/am7930.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (29 lines):
diff -r 788cf2668dd9 -r f57afae99136 sys/dev/ic/am7930.c
--- a/sys/dev/ic/am7930.c Sat Jun 24 23:25:01 2017 +0000
+++ b/sys/dev/ic/am7930.c Sun Jun 25 02:09:47 2017 +0000
@@ -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 @@
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;
Home |
Main Index |
Thread Index |
Old Index