diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-20 19:54:06 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-20 19:54:06 +0000 |
commit | 8c34e1938b137a239dc1d2961474ad0ee823588d (patch) | |
tree | 60983c6588e0e4037121576dad26877d80ec9d66 /sys/arch/macppc | |
parent | e7167246a653421564a388f4cda4b05444ebbd0b (diff) |
- add a datasheet for daca(4)
- add a datasheet for a very similar chipset to onyx(4); From kettenis@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/daca.c | 11 | ||||
-rw-r--r-- | sys/arch/macppc/dev/onyx.c | 5 |
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> |