diff options
author | luigi <luigi@FreeBSD.org> | 1998-12-31 07:34:01 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 1998-12-31 07:34:01 +0000 |
commit | 84df37382969fa58f3202f08724c722933d50f78 (patch) | |
tree | c7d4eb6dfaa7ecb8105b2dda10ec2d46a13b3520 /sys/dev/sound/isa/sb8.c | |
parent | 7f0ec0256261ed83249787c12f155c77b1869216 (diff) | |
download | FreeBSD-src-84df37382969fa58f3202f08724c722933d50f78.zip FreeBSD-src-84df37382969fa58f3202f08724c722933d50f78.tar.gz |
Extend the callback mechanism and add hooks to support PCI cards.
Remove a few unused variables.
Diffstat (limited to 'sys/dev/sound/isa/sb8.c')
-rw-r--r-- | sys/dev/sound/isa/sb8.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/dev/sound/isa/sb8.c b/sys/dev/sound/isa/sb8.c index 4bd5825..3c77f1f 100644 --- a/sys/dev/sound/isa/sb8.c +++ b/sys/dev/sound/isa/sb8.c @@ -382,7 +382,6 @@ sb_callback(snddev_info *d, int reason) * the proper initialization for each one. */ if (PLAIN_SB16(d->bd_flags)) { - u_char c, c1 ; /* the original SB16 (non-PnP, or PnP, or Vibra16C) * can do full duplex using one 16-bit channel @@ -500,7 +499,6 @@ sb_callback(snddev_info *d, int reason) * the second one takes the next... * The default is to be ready for play. */ - int swap = 0 ; DEB(printf("start %s -- now dma %d:%d\n", rd ? "rd" : "wr", d->dbuf_out.chan, d->dbuf_in.chan);); @@ -767,8 +765,6 @@ sb_dsp_init(snddev_info *d, struct isa_device *dev) break ; } else if (ess_major == 0x68 && (ess_minor & 0xf0) == 0x80) { - u_char cfg; - u_char bits; int rev = ess_minor & 0xf; if (rev >= 8) @@ -1232,7 +1228,6 @@ ess1868_attach(u_long csn, u_long vend_id, char *name, { struct pnp_cinfo d ; snddev_info tmp_d ; /* patched copy of the basic snddev_info */ - int the_irq = 0 ; tmp_d = sb_op_desc; snddev_last_probed = &tmp_d; |