Module Name: src
Committed By: rin
Date: Sat Sep 7 11:57:08 UTC 2019
Modified Files:
src/sys/arch/amiga/dev: aucc.c
Log Message:
The device does not support recording.
Fix diagnostic assertion failure in aucc_set_format().
OK isaki
XXX
pullup to netbsd-9
To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 src/sys/arch/amiga/dev/aucc.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/arch/amiga/dev/aucc.c
diff -u src/sys/arch/amiga/dev/aucc.c:1.46 src/sys/arch/amiga/dev/aucc.c:1.47
--- src/sys/arch/amiga/dev/aucc.c:1.46 Sat Jun 8 08:02:36 2019
+++ src/sys/arch/amiga/dev/aucc.c Sat Sep 7 11:57:08 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: aucc.c,v 1.46 2019/06/08 08:02:36 isaki Exp $ */
+/* $NetBSD: aucc.c,v 1.47 2019/09/07 11:57:08 rin Exp $ */
/*
* Copyright (c) 1999 Bernardo Innocenti
@@ -46,7 +46,7 @@
#if NAUCC > 0
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aucc.c,v 1.46 2019/06/08 08:02:36 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aucc.c,v 1.47 2019/09/07 11:57:08 rin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -694,7 +694,7 @@ int
aucc_get_props(void *addr)
{
- return AUDIO_PROP_PLAYBACK | AUDIO_PROP_CAPTURE;
+ return AUDIO_PROP_PLAYBACK;
}