ASoC: cs35l35: Minor error paths fixups
Correct some unchecked re-allocations of ret whilst reading the device ID and ensure the hardware state is returned to off on the error paths. Reported-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20210510131357.17170-6-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8cb9b00163
commit
60ba916d87
@ -33,6 +33,7 @@
|
||||
#include <linux/completion.h>
|
||||
|
||||
#include "cs35l35.h"
|
||||
#include "cirrus_legacy.h"
|
||||
|
||||
/*
|
||||
* Some fields take zero as a valid value so use a high bit flag that won't
|
||||
@ -1471,9 +1472,8 @@ static int cs35l35_i2c_probe(struct i2c_client *i2c_client,
|
||||
struct cs35l35_private *cs35l35;
|
||||
struct device *dev = &i2c_client->dev;
|
||||
struct cs35l35_platform_data *pdata = dev_get_platdata(dev);
|
||||
int i;
|
||||
int i, devid;
|
||||
int ret;
|
||||
unsigned int devid = 0;
|
||||
unsigned int reg;
|
||||
|
||||
cs35l35 = devm_kzalloc(dev, sizeof(struct cs35l35_private), GFP_KERNEL);
|
||||
@ -1552,13 +1552,12 @@ static int cs35l35_i2c_probe(struct i2c_client *i2c_client,
|
||||
goto err;
|
||||
}
|
||||
/* initialize codec */
|
||||
ret = regmap_read(cs35l35->regmap, CS35L35_DEVID_AB, ®);
|
||||
|
||||
devid = (reg & 0xFF) << 12;
|
||||
ret = regmap_read(cs35l35->regmap, CS35L35_DEVID_CD, ®);
|
||||
devid |= (reg & 0xFF) << 4;
|
||||
ret = regmap_read(cs35l35->regmap, CS35L35_DEVID_E, ®);
|
||||
devid |= (reg & 0xF0) >> 4;
|
||||
devid = cirrus_read_device_id(cs35l35->regmap, CS35L35_DEVID_AB);
|
||||
if (devid < 0) {
|
||||
ret = devid;
|
||||
dev_err(dev, "Failed to read device ID: %d\n", ret);
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (devid != CS35L35_CHIP_ID) {
|
||||
dev_err(dev, "CS35L35 Device ID (%X). Expected ID %X\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user