mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
ASoC: max9867: Remove useless assignment
ret is assigned later, no need to initialize it. Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d8f2c8592b
commit
8efc1afd7e
@ -476,7 +476,7 @@ static int max9867_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
{
|
||||
struct max9867_priv *max9867;
|
||||
int ret = 0, reg;
|
||||
int ret, reg;
|
||||
|
||||
max9867 = devm_kzalloc(&i2c->dev, sizeof(*max9867), GFP_KERNEL);
|
||||
if (!max9867)
|
||||
@ -497,10 +497,8 @@ static int max9867_i2c_probe(struct i2c_client *i2c,
|
||||
dev_info(&i2c->dev, "device revision: %x\n", reg);
|
||||
ret = devm_snd_soc_register_component(&i2c->dev, &max9867_component,
|
||||
max9867_dai, ARRAY_SIZE(max9867_dai));
|
||||
if (ret < 0) {
|
||||
if (ret < 0)
|
||||
dev_err(&i2c->dev, "Failed to register component: %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user