[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20130114141504.C91503E232D@localhost>
Date: Mon, 14 Jan 2013 14:15:04 +0000
From: Grant Likely <grant.likely@...retlab.ca>
To: Thierry Reding <thierry.reding@...onic-design.de>
Cc: Linus Walleij <linus.walleij@...aro.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] gpio: mvebu: Don't free chip label memory
On Mon, 14 Jan 2013 11:53:20 +0100, Thierry Reding <thierry.reding@...onic-design.de> wrote:
> The gpio_chip.label field is a const char * and assigned the value of a
> call to dev_name(). Memory obtained from dev_name() should not be freed
> by drivers.
>
> Signed-off-by: Thierry Reding <thierry.reding@...onic-design.de>
Acked-by: Grant Likely <grant.likely@...retlab.ca>
Linus, can you put this in your fixes branch?
Thanks,
g.
> ---
> drivers/gpio/gpio-mvebu.c | 6 ------
> 1 file changed, 6 deletions(-)
>
> diff --git a/drivers/gpio/gpio-mvebu.c b/drivers/gpio/gpio-mvebu.c
> index 7d9bd94..6819d63 100644
> --- a/drivers/gpio/gpio-mvebu.c
> +++ b/drivers/gpio/gpio-mvebu.c
> @@ -547,7 +547,6 @@ static int mvebu_gpio_probe(struct platform_device *pdev)
> mvchip->membase = devm_request_and_ioremap(&pdev->dev, res);
> if (! mvchip->membase) {
> dev_err(&pdev->dev, "Cannot ioremap\n");
> - kfree(mvchip->chip.label);
> return -ENOMEM;
> }
>
> @@ -557,14 +556,12 @@ static int mvebu_gpio_probe(struct platform_device *pdev)
> res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> if (! res) {
> dev_err(&pdev->dev, "Cannot get memory resource\n");
> - kfree(mvchip->chip.label);
> return -ENODEV;
> }
>
> mvchip->percpu_membase = devm_request_and_ioremap(&pdev->dev, res);
> if (! mvchip->percpu_membase) {
> dev_err(&pdev->dev, "Cannot ioremap\n");
> - kfree(mvchip->chip.label);
> return -ENOMEM;
> }
> }
> @@ -625,7 +622,6 @@ static int mvebu_gpio_probe(struct platform_device *pdev)
> mvchip->irqbase = irq_alloc_descs(-1, 0, ngpios, -1);
> if (mvchip->irqbase < 0) {
> dev_err(&pdev->dev, "no irqs\n");
> - kfree(mvchip->chip.label);
> return -ENOMEM;
> }
>
> @@ -633,7 +629,6 @@ static int mvebu_gpio_probe(struct platform_device *pdev)
> mvchip->membase, handle_level_irq);
> if (! gc) {
> dev_err(&pdev->dev, "Cannot allocate generic irq_chip\n");
> - kfree(mvchip->chip.label);
> return -ENOMEM;
> }
>
> @@ -668,7 +663,6 @@ static int mvebu_gpio_probe(struct platform_device *pdev)
> irq_remove_generic_chip(gc, IRQ_MSK(ngpios), IRQ_NOREQUEST,
> IRQ_LEVEL | IRQ_NOPROBE);
> kfree(gc);
> - kfree(mvchip->chip.label);
> return -ENODEV;
> }
>
> --
> 1.8.1
>
--
Grant Likely, B.Sc, P.Eng.
Secret Lab Technologies, Ltd.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists