[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20130612100232.GB3008@katana>
Date: Wed, 12 Jun 2013 12:02:33 +0200
From: Wolfram Sang <wsa@...-dreams.de>
To: Libo Chen <libo.chen@...wei.com>
Cc: guz.fnst@...fujitsu.com, sonic.zhang@...log.com,
linux-i2c@...r.kernel.org, linux-kernel@...r.kernel.org,
lizefan@...wei.com
Subject: Re: [PATCH RFC v3 2/3] i2c: pxa: convert to devm_* API
On Thu, May 23, 2013 at 08:00:08PM +0800, Libo Chen wrote:
> when i2c malloc faild, we should not try to call release_mem_region.
> aovid this, convert them to devm_* API.
>
> Signed-off-by: Libo Chen <libo.chen@...wei.com>
First, you did it right. This patch should not be combined with 1/3. It
is not a trivial cleanup, so I prefer to keep them seperated.
BTW did you test these patches on real hardware?
> @@ -1198,19 +1187,6 @@ static int i2c_pxa_probe(struct platform_device *dev)
> #endif
> return 0;
>
> -eadapt:
> - if (!i2c->use_pio)
> - free_irq(irq, i2c);
> -ereqirq:
> - clk_disable(i2c->clk);
> - iounmap(i2c->reg_base);
> -eremap:
> - clk_put(i2c->clk);
> -eclk:
> - kfree(i2c);
> -emalloc:
> - release_mem_region(res->start, resource_size(res));
> - return ret;
> }
>
> static int i2c_pxa_remove(struct platform_device *dev)
> @@ -1218,15 +1194,6 @@ static int i2c_pxa_remove(struct platform_device *dev)
> struct pxa_i2c *i2c = platform_get_drvdata(dev);
>
> i2c_del_adapter(&i2c->adap);
> - if (!i2c->use_pio)
> - free_irq(i2c->irq, i2c);
> -
> - clk_disable(i2c->clk);
> - clk_put(i2c->clk);
> -
> - iounmap(i2c->reg_base);
> - release_mem_region(i2c->iobase, i2c->iosize);
> - kfree(i2c);
You remove too much. Who disables the clock now?
Download attachment "signature.asc" of type "application/pgp-signature" (837 bytes)
Powered by blists - more mailing lists