mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ALSA: sh: aica: Drop if blocks with always false condition
snd_aica_remove() is only called after a successful call to snd_aica_probe(). With the latter it's sure that platform_set_drvdata() was called with a non-NULL argument. So platform_get_drvdata() won't return NULL and the check can be dropped. This prepares converting platform driver remove callbacks to return void. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Acked-by: Takashi Iwai <tiwai@suse.de> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> Link: https://lore.kernel.org/r/20230315150745.67084-2-u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e32acf7b00
commit
e3a8459d72
@ -543,8 +543,6 @@ static int snd_aica_remove(struct platform_device *devptr)
|
||||
{
|
||||
struct snd_card_aica *dreamcastcard;
|
||||
dreamcastcard = platform_get_drvdata(devptr);
|
||||
if (unlikely(!dreamcastcard))
|
||||
return -ENODEV;
|
||||
snd_card_free(dreamcastcard->card);
|
||||
kfree(dreamcastcard);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user