Removed assignment to an "unused" variable that was removed in the

previous commit.  Building LINT didn't expose this bug, because the
assignment was in an ifdef that is too tangled for LINT to cover
properly.
This commit is contained in:
bde 2000-01-24 08:16:15 +00:00
parent 47a5efe346
commit df8760b455

View File

@ -191,12 +191,10 @@ attach_cs4232(struct address_info * hw_config)
hw_config2.card_subtype = 0;
hw_config2.osp = hw_config->osp;
if (probe_mpu401(&hw_config2)) {
mpu_detected = 1;
if (probe_mpu401(&hw_config2))
attach_mpu401(&hw_config2);
} else {
else
mpu_base = mpu_irq = 0;
}
}
#endif
}