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:
@@ -373,11 +373,8 @@ static int aat2870_i2c_probe(struct i2c_client *client,
|
|||||||
|
|
||||||
aat2870 = devm_kzalloc(&client->dev, sizeof(struct aat2870_data),
|
aat2870 = devm_kzalloc(&client->dev, sizeof(struct aat2870_data),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!aat2870) {
|
if (!aat2870)
|
||||||
dev_err(&client->dev,
|
|
||||||
"Failed to allocate memory for aat2870\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
aat2870->dev = &client->dev;
|
aat2870->dev = &client->dev;
|
||||||
dev_set_drvdata(aat2870->dev, aat2870);
|
dev_set_drvdata(aat2870->dev, aat2870);
|
||||||
|
|||||||
Reference in New Issue
Block a user