summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-11-20 19:54:06 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-11-20 19:54:06 +0000
commit8c34e1938b137a239dc1d2961474ad0ee823588d (patch)
tree60983c6588e0e4037121576dad26877d80ec9d66
parente7167246a653421564a388f4cda4b05444ebbd0b (diff)
- add a datasheet for daca(4)
- add a datasheet for a very similar chipset to onyx(4); From kettenis@
-rw-r--r--sys/arch/macppc/dev/daca.c11
-rw-r--r--sys/arch/macppc/dev/onyx.c5
2 files changed, 12 insertions, 4 deletions
diff --git a/sys/arch/macppc/dev/daca.c b/sys/arch/macppc/dev/daca.c
index 0d7afbc4d38..834e7478e02 100644
--- a/sys/arch/macppc/dev/daca.c
+++ b/sys/arch/macppc/dev/daca.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: daca.c,v 1.2 2005/11/05 04:26:22 brad Exp $ */
-/* $Id: daca.c,v 1.2 2005/11/05 04:26:22 brad Exp $ */
+/* $OpenBSD: daca.c,v 1.3 2005/11/20 19:54:05 brad Exp $ */
+/* $Id: daca.c,v 1.3 2005/11/20 19:54:05 brad Exp $ */
/*-
* Copyright (c) 2002,2003 Tsubai Masanari. All rights reserved.
@@ -27,6 +27,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+/*
+ * Datasheet is available from
+ * http://www.indata.si/grega/pdfs/dac3550a.pdf
+ */
+
#include <sys/param.h>
#include <sys/audioio.h>
#include <sys/device.h>
@@ -103,7 +108,7 @@ struct audio_device daca_device = {
"daca"
};
-/* DAC3550 registers */
+/* DAC3550A registers */
#define DEQ_SR 0x01 /* Sample rate control (8) */
#define DEQ_AVOL 0x02 /* Analog volume (16) */
#define DEQ_GCFG 0x03 /* Global configuration (8) */
diff --git a/sys/arch/macppc/dev/onyx.c b/sys/arch/macppc/dev/onyx.c
index 63f44fcc16c..60fe68518d0 100644
--- a/sys/arch/macppc/dev/onyx.c
+++ b/sys/arch/macppc/dev/onyx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: onyx.c,v 1.3 2005/11/20 02:56:44 brad Exp $ */
+/* $OpenBSD: onyx.c,v 1.4 2005/11/20 19:54:04 brad Exp $ */
/*-
* Copyright (c) 2005 Tsubai Masanari. All rights reserved.
@@ -28,6 +28,9 @@
/*
* http://focus.ti.com/docs/prod/folders/print/pcm3052.html
+ *
+ * Datasheet is available from
+ * http://focus.ti.com/docs/prod/folders/print/pcm3052a.html
*/
#include <sys/param.h>