Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4fc390a1 authored by Dan Carpenter's avatar Dan Carpenter Committed by Takashi Iwai
Browse files

sound: oss: uart401: remove unneeded NULL check



"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: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 966b7bc9
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -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;
	}

	/* This kills midi_devs[x] */
	sound_unload_mididev(hw_config->slots[4]);
}