mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 17:23:25 -05:00
mfd: aat2870-core: Remove unnecessary 'out of memory' message
WARNING: Possible unnecessary 'out of memory' message + if (!aat2870) { + dev_err(&client->dev, total: 0 errors, 1 warnings, 524 lines checked Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
f90dff4464
commit
4374b20c6c
1 changed files with 1 additions and 4 deletions
|
@ -373,11 +373,8 @@ static int aat2870_i2c_probe(struct i2c_client *client,
|
|||
|
||||
aat2870 = devm_kzalloc(&client->dev, sizeof(struct aat2870_data),
|
||||
GFP_KERNEL);
|
||||
if (!aat2870) {
|
||||
dev_err(&client->dev,
|
||||
"Failed to allocate memory for aat2870\n");
|
||||
if (!aat2870)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
aat2870->dev = &client->dev;
|
||||
dev_set_drvdata(aat2870->dev, aat2870);
|
||||
|
|
Loading…
Add table
Reference in a new issue