Message ID | Pine.LNX.4.64.0908011055050.23408@ask.diku.dk |
---|---|
State | Not Applicable |
Delegated to: | David Miller |
Headers | show |
Julia Lawall wrote: ... > --- > drivers/ata/pata_at91.c | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/drivers/ata/pata_at91.c b/drivers/ata/pata_at91.c > index 5702aff..46fb883 100644 > --- a/drivers/ata/pata_at91.c > +++ b/drivers/ata/pata_at91.c > @@ -261,7 +261,8 @@ static int __devinit pata_at91_probe(struct platform_device *pdev) > > if (IS_ERR(info->mck)) { > dev_err(dev, "failed to get access to mck clock\n"); > - return -ENODEV; > + ret = -ENODEV; > + goto err_clk_get; > } > > info->cs = board->chipselect; > @@ -308,6 +309,7 @@ err_alt_ioremap: > > err_ide_ioremap: > clk_put(info->mck); > +err_clk_get: > kfree(info); cc'ing Matyukevich Sergey. Matyukevich, is it possible to use devm_kzalloc() instead? Thanks.
Hi, > cc'ing Matyukevich Sergey. Matyukevich, is it possible to use > devm_kzalloc() instead? Many thanks for review and fixes. Your final patch with devm_kzalloc is just fine. Sergey -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/ata/pata_at91.c b/drivers/ata/pata_at91.c index 5702aff..46fb883 100644 --- a/drivers/ata/pata_at91.c +++ b/drivers/ata/pata_at91.c @@ -261,7 +261,8 @@ static int __devinit pata_at91_probe(struct platform_device *pdev) if (IS_ERR(info->mck)) { dev_err(dev, "failed to get access to mck clock\n"); - return -ENODEV; + ret = -ENODEV; + goto err_clk_get; } info->cs = board->chipselect; @@ -308,6 +309,7 @@ err_alt_ioremap: err_ide_ioremap: clk_put(info->mck); +err_clk_get: kfree(info); return ret;