mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
mfd: htc-i2cpld: Delete error message for a failed memory allocation
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
30feec0930
commit
2e4d5494ab
1 changed files with 1 additions and 3 deletions
|
@ -479,10 +479,8 @@ static int htcpld_setup_chips(struct platform_device *pdev)
|
||||||
htcpld->nchips = pdata->num_chip;
|
htcpld->nchips = pdata->num_chip;
|
||||||
htcpld->chip = devm_kzalloc(dev, sizeof(struct htcpld_chip) * htcpld->nchips,
|
htcpld->chip = devm_kzalloc(dev, sizeof(struct htcpld_chip) * htcpld->nchips,
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!htcpld->chip) {
|
if (!htcpld->chip)
|
||||||
dev_warn(dev, "Unable to allocate memory for chips\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
/* Add the chips as best we can */
|
/* Add the chips as best we can */
|
||||||
for (i = 0; i < htcpld->nchips; i++) {
|
for (i = 0; i < htcpld->nchips; i++) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue