X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=drivers%2Fmfd%2Fda903x.c;h=2fadbaeb1cb138da62a91f57f394599058c70624;hb=79346507ad48895f41b438fa562b1965721f36b9;hp=c07aece900fbb93b9ec08b2aa99ee85e144093fe;hpb=7046e668d7973c470146fbe6635967a1b4a31bca;p=~andy%2Flinux diff --git a/drivers/mfd/da903x.c b/drivers/mfd/da903x.c index c07aece900f..2fadbaeb1cb 100644 --- a/drivers/mfd/da903x.c +++ b/drivers/mfd/da903x.c @@ -470,13 +470,19 @@ static int __devinit da903x_add_subdevs(struct da903x_chip *chip, subdev = &pdata->subdevs[i]; pdev = platform_device_alloc(subdev->name, subdev->id); + if (!pdev) { + ret = -ENOMEM; + goto failed; + } pdev->dev.parent = chip->dev; pdev->dev.platform_data = subdev->platform_data; ret = platform_device_add(pdev); - if (ret) + if (ret) { + platform_device_put(pdev); goto failed; + } } return 0;