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. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html