ALSA: Deletion of checks before the function call "iounmap"
The iounmap() function performs also input parameter validation. Thus the test around the call is not needed. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
@@ -627,8 +627,7 @@ static int snd_msnd_attach(struct snd_card *card)
|
||||
return 0;
|
||||
|
||||
err_release_region:
|
||||
if (chip->mappedbase)
|
||||
iounmap(chip->mappedbase);
|
||||
iounmap(chip->mappedbase);
|
||||
release_mem_region(chip->base, BUFFSIZE);
|
||||
release_region(chip->io, DSP_NUMIO);
|
||||
free_irq(chip->irq, chip);
|
||||
|
Reference in New Issue
Block a user