At Sat, 22 Nov 2014 21:29:01 +0300, Dan Carpenter wrote: > > "devc" can't be NULL here so there is no need to check. Also I removed > the "devc = NULL" assignment because devc is stored on stack so it's > a no-op. > > Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Thanks, applied. Takashi > > diff --git a/sound/oss/uart401.c b/sound/oss/uart401.c > index 279bc56..dae4d43 100644 > --- a/sound/oss/uart401.c > +++ b/sound/oss/uart401.c > @@ -412,13 +412,10 @@ void unload_uart401(struct address_info *hw_config) > > if (!devc->share_irq) > free_irq(devc->irq, devc); > - if (devc) > - { > - kfree(midi_devs[devc->my_dev]->converter); > - kfree(midi_devs[devc->my_dev]); > - kfree(devc); > - devc = NULL; > - } > + kfree(midi_devs[devc->my_dev]->converter); > + kfree(midi_devs[devc->my_dev]); > + kfree(devc); > + > /* This kills midi_devs[x] */ > sound_unload_mididev(hw_config->slots[4]); > } > -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html