mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-13 11:51:32 +00:00
mfd: Do not dereference null pointer in twl4030 error path
We are mistakenly dereferencing twl->client in the twl->client null checking path. Signed-off-by: Ilkka Koskinen <ilkka.koskinen@nokia.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
14f572fa38
commit
a8643430bc
@ -795,7 +795,7 @@ twl4030_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
||||
twl->client = i2c_new_dummy(client->adapter,
|
||||
twl->address);
|
||||
if (!twl->client) {
|
||||
dev_err(&twl->client->dev,
|
||||
dev_err(&client->dev,
|
||||
"can't attach client %d\n", i);
|
||||
status = -ENOMEM;
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user