Commit 70d654ea authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

regulator: mt6315: Fix checking return value of devm_regmap_init_spmi_ext

devm_regmap_init_spmi_ext() returns ERR_PTR() on error.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Link: https://lore.kernel.org/r/20210615132934.3453965-1-axel.lin@ingics.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8c485bed
...@@ -223,8 +223,8 @@ static int mt6315_regulator_probe(struct spmi_device *pdev) ...@@ -223,8 +223,8 @@ static int mt6315_regulator_probe(struct spmi_device *pdev)
int i; int i;
regmap = devm_regmap_init_spmi_ext(pdev, &mt6315_regmap_config); regmap = devm_regmap_init_spmi_ext(pdev, &mt6315_regmap_config);
if (!regmap) if (IS_ERR(regmap))
return -ENODEV; return PTR_ERR(regmap);
chip = devm_kzalloc(dev, sizeof(struct mt6315_chip), GFP_KERNEL); chip = devm_kzalloc(dev, sizeof(struct mt6315_chip), GFP_KERNEL);
if (!chip) if (!chip)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment