ASoC: qcom: Use devm_kcalloc() instead of devm_kzalloc()
Use 2-factor multiplication argument form devm_kcalloc() instead of devm_kzalloc(). Link: https://github.com/KSPP/linux/issues/162 Signed-off-by: Erick Archer <erick.archer@gmx.com> Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org> Link: https://msgid.link/r/20240106171635.19881-1-erick.archer@gmx.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
6613476e22
commit
322ed3a10b
@ -73,7 +73,7 @@ int qcom_snd_parse_of(struct snd_soc_card *card)
|
||||
link = card->dai_link;
|
||||
|
||||
for_each_available_child_of_node(dev->of_node, np) {
|
||||
dlc = devm_kzalloc(dev, 2 * sizeof(*dlc), GFP_KERNEL);
|
||||
dlc = devm_kcalloc(dev, 2, sizeof(*dlc), GFP_KERNEL);
|
||||
if (!dlc) {
|
||||
ret = -ENOMEM;
|
||||
goto err_put_np;
|
||||
|
Loading…
x
Reference in New Issue
Block a user