Fix nits from Mike Long <mike.long@analog.com> PR#996
This commit is contained in:
parent
d4f78febcf
commit
1f4378da60
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.isa,v 1.5 1995/04/19 19:03:43 mycroft Exp $
|
||||
# $NetBSD: files.isa,v 1.6 1995/04/26 21:45:57 brezak Exp $
|
||||
#
|
||||
# Config.new file and device description for machine-independent ISA code.
|
||||
# Included by ports that need it. Requires that the SCSI files be
|
||||
|
@ -173,11 +173,11 @@ file dev/isa/sb.c sb needs-flag
|
|||
device pas at isa: audio, isadma, sbdsp
|
||||
file dev/isa/pas.c pas needs-flag
|
||||
|
||||
# ad1848 (XXX what is it?) chip spport; used by other drivers
|
||||
# AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers
|
||||
define ad1848
|
||||
file dev/isa/ad1848.c ad1848
|
||||
|
||||
# (XXX what is this?)
|
||||
# Audio systems based on Echo Speech Corp. ESC61[45] ASICs
|
||||
device pss at isa {[port = -1], [size = 0],
|
||||
[iomem = -1], [iosiz = 0],
|
||||
[irq = -1], [drq = -1]}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pss.c,v 1.5 1995/04/17 15:48:26 cgd Exp $ */
|
||||
/* $NetBSD: pss.c,v 1.6 1995/04/26 21:46:05 brezak Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 John Brezak
|
||||
|
@ -33,7 +33,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: pss.c,v 1.5 1995/04/17 15:48:26 cgd Exp $
|
||||
* $Id: pss.c,v 1.6 1995/04/26 21:46:05 brezak Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -67,7 +67,7 @@
|
|||
#include <dev/audio_if.h>
|
||||
|
||||
#include <dev/isa/isavar.h>
|
||||
#include <dev/isa/dmavar.h>
|
||||
#include <dev/isa/isadmavar.h>
|
||||
#include <i386/isa/icu.h> /* XXX BROKEN; WHY? */
|
||||
|
||||
#include <dev/isa/ad1848var.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: sbdsp.c,v 1.8 1995/04/17 23:48:06 mycroft Exp $ */
|
||||
/* $NetBSD: sbdsp.c,v 1.9 1995/04/26 21:46:10 brezak Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1993 Regents of the University of California.
|
||||
|
@ -32,7 +32,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: sbdsp.c,v 1.8 1995/04/17 23:48:06 mycroft Exp $
|
||||
* $Id: sbdsp.c,v 1.9 1995/04/26 21:46:10 brezak Exp $
|
||||
*/
|
||||
/*
|
||||
* SoundBlaster Pro code provided by John Kohl, based on lots of
|
||||
|
@ -188,7 +188,7 @@ sbdsp_attach(sc)
|
|||
for (i = 0; i < SB_NDEVS; i++)
|
||||
sc->gain[i] = sbdsp_stereo_vol(SBP_MAXVOL, SBP_MAXVOL);
|
||||
}
|
||||
printf(": dsp v%d.%d\n",
|
||||
printf(": dsp v%d.%02d\n",
|
||||
SBVER_MAJOR(sc->sc_model), SBVER_MINOR(sc->sc_model));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue