Re: [PATCH 9/10] drivers/ata: introduce missing kfree

From: Tejun Heo
Date: Tue Aug 04 2009 - 00:49:47 EST


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-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/