mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 12:38:08 +07:00
gpio-mcp23s08: correctly handling failed allocation
Since devm_kzalloc can be failed in memory pressure, it needs to check and return -ENOMEM Signed-off-by: Insu Yun <wuninsu@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
818cc6a5f8
commit
aaf2b3afb9
@ -803,6 +803,8 @@ static int mcp230xx_probe(struct i2c_client *client,
|
|||||||
pdata = devm_kzalloc(&client->dev,
|
pdata = devm_kzalloc(&client->dev,
|
||||||
sizeof(struct mcp23s08_platform_data),
|
sizeof(struct mcp23s08_platform_data),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
|
if (!pdata)
|
||||||
|
return -ENOMEM;
|
||||||
pdata->base = -1;
|
pdata->base = -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user