ASoC: mediatek: mt8189: remove unnecessary NULL check

Smatch complains that the call to snd_soc_component_get_drvdata(component)
will dereference "component" so this NULL check is too late.  The probe()
function will never be called with a NULL component pointer so just
delete the check.

Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://patch.msgid.link/aScUKqCEhSIZoOmg@stanley.mountain
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Dan Carpenter 2025-11-26 17:52:26 +03:00 committed by Mark Brown
parent 900baa6e7b
commit 9d3fcd0ebe
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 4 additions and 6 deletions

View File

@ -2352,12 +2352,10 @@ static int mt8189_afe_component_probe(struct snd_soc_component *component)
{ {
struct mtk_base_afe *afe = snd_soc_component_get_drvdata(component); struct mtk_base_afe *afe = snd_soc_component_get_drvdata(component);
if (component) { /* enable clock for regcache get default value from hw */
/* enable clock for regcache get default value from hw */ pm_runtime_get_sync(afe->dev);
pm_runtime_get_sync(afe->dev); mtk_afe_add_sub_dai_control(component);
mtk_afe_add_sub_dai_control(component); pm_runtime_put_sync(afe->dev);
pm_runtime_put_sync(afe->dev);
}
return 0; return 0;
} }