diff options
-rw-r--r-- | sound/oss/uart401.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sound/oss/uart401.c b/sound/oss/uart401.c index 279bc565ac7e..dae4d4344407 100644 --- a/sound/oss/uart401.c +++ b/sound/oss/uart401.c | |||
@@ -412,13 +412,10 @@ void unload_uart401(struct address_info *hw_config) | |||
412 | 412 | ||
413 | if (!devc->share_irq) | 413 | if (!devc->share_irq) |
414 | free_irq(devc->irq, devc); | 414 | free_irq(devc->irq, devc); |
415 | if (devc) | 415 | kfree(midi_devs[devc->my_dev]->converter); |
416 | { | 416 | kfree(midi_devs[devc->my_dev]); |
417 | kfree(midi_devs[devc->my_dev]->converter); | 417 | kfree(devc); |
418 | kfree(midi_devs[devc->my_dev]); | 418 | |
419 | kfree(devc); | ||
420 | devc = NULL; | ||
421 | } | ||
422 | /* This kills midi_devs[x] */ | 419 | /* This kills midi_devs[x] */ |
423 | sound_unload_mididev(hw_config->slots[4]); | 420 | sound_unload_mididev(hw_config->slots[4]); |
424 | } | 421 | } |