ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio
Since the potential failure of the devm_regmap_init_mmio(), it will return error pointer and be assigned to the regmap. Then the error pointer will be dereferenced. For example rx->regmap will be used in rx_macro_mclk_enable(). Therefore, it should be better to check it. Fixes:af3d54b997
("ASoC: codecs: lpass-rx-macro: add support for lpass rx macro") Fixes:c39667ddcf
("ASoC: codecs: lpass-tx-macro: add support for lpass tx macro") Fixes:809bcbcece
("ASoC: codecs: lpass-wsa-macro: Add support to WSA Macro") Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn> Link: https://lore.kernel.org/r/20220121171031.2826198-1-jiasheng@iscas.ac.cn Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
dbf2f8e3fe
Коммит
aa505ecccf
|
@ -3542,6 +3542,8 @@ static int rx_macro_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(base);
|
||||
|
||||
rx->regmap = devm_regmap_init_mmio(dev, base, &rx_regmap_config);
|
||||
if (IS_ERR(rx->regmap))
|
||||
return PTR_ERR(rx->regmap);
|
||||
|
||||
dev_set_drvdata(dev, rx);
|
||||
|
||||
|
|
|
@ -1821,6 +1821,8 @@ static int tx_macro_probe(struct platform_device *pdev)
|
|||
}
|
||||
|
||||
tx->regmap = devm_regmap_init_mmio(dev, base, &tx_regmap_config);
|
||||
if (IS_ERR(tx->regmap))
|
||||
return PTR_ERR(tx->regmap);
|
||||
|
||||
dev_set_drvdata(dev, tx);
|
||||
|
||||
|
|
|
@ -2405,6 +2405,8 @@ static int wsa_macro_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(base);
|
||||
|
||||
wsa->regmap = devm_regmap_init_mmio(dev, base, &wsa_regmap_config);
|
||||
if (IS_ERR(wsa->regmap))
|
||||
return PTR_ERR(wsa->regmap);
|
||||
|
||||
dev_set_drvdata(dev, wsa);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче