diff options
author | peter <peter@FreeBSD.org> | 1999-05-02 21:53:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-05-02 21:53:28 +0000 |
commit | 0dd5531c931fc5b7c31e2d6cbe32e7dc827ad046 (patch) | |
tree | 8004867d0eb6e764ee07303c97ed1eb715fc1b64 | |
parent | 886f89d171871383893df44521a497c2c761590d (diff) | |
download | FreeBSD-src-0dd5531c931fc5b7c31e2d6cbe32e7dc827ad046.zip FreeBSD-src-0dd5531c931fc5b7c31e2d6cbe32e7dc827ad046.tar.gz |
Sigh, serves me right for committing without reading the followups. :-]
The whole thing (mpu_config etc) is dead code.
PR: 11411 (followup)
Pointed out by: "Daniel C. Sobral" <dcs@newsguy.com>
-rw-r--r-- | sys/i386/isa/snd/clones.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/snd/clones.c b/sys/i386/isa/snd/clones.c index 1d263d5..4927932 100644 --- a/sys/i386/isa/snd/clones.c +++ b/sys/i386/isa/snd/clones.c @@ -210,11 +210,11 @@ initialize_ProSonic16(snddev_info *d) dma_translat[8] = {0, 1, 0, 2, 0, 3, 0, 4}; - struct address_info *mpu_config; + struct address_info *mpu_config = NULL; int mpu_base, mpu_irq; - if (mpu_config != NULL) { + if (mpu_config != NULL) { /* XXX dead code? */ mpu_base = mpu_config->io_base; mpu_irq = mpu_config->irq; } else { |