On Mon, Jul 09, 2012 at 10:11:06PM +0200, Linus Walleij wrote:
> Allocate memory for device state using devm_kzalloc(), get the
> clock using devm_clk_get(), get the IRQ using devm_request_irq(),
> request and remap memory using devm_request_and_ioremap().
> All to simplify accounting and letting the kernel do the
> garbage-collection.
> 
> Signed-off-by: Linus Walleij <[email protected]>
> ---
> ChangeLog v1->v2:
> - Use more devm* stuff, at Wolfram's request.
> - Note: based on a clean v3.5-rc6, may need some patch -p1 < patch
>   to apply on the i2c tree, if you want me to rebase it, just tell
>   me where to find the baseline.

Thanks, it is here:

git://git.pengutronix.de/git/wsa/linux.git i2c-embedded/for-next


> ---
>  drivers/i2c/busses/i2c-stu300.c |   75 +++++++++-----------------------------
>  1 files changed, 18 insertions(+), 57 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-stu300.c b/drivers/i2c/busses/i2c-stu300.c
> index 4d44af1..dc4c518 100644
> --- a/drivers/i2c/busses/i2c-stu300.c
> +++ b/drivers/i2c/busses/i2c-stu300.c
> @@ -1,5 +1,5 @@
>  /*
> - * Copyright (C) 2007-2009 ST-Ericsson AB
> + * Copyright (C) 2007-2012 ST-Ericsson AB
>   * License terms: GNU General Public License (GPL) version 2
>   * ST DDC I2C master mode driver, used in e.g. U300 series platforms.
>   * Author: Linus Walleij <[email protected]>
> @@ -873,64 +873,46 @@ stu300_probe(struct platform_device *pdev)
>       int ret = 0;
>       char clk_name[] = "I2C0";
>  
> -     dev = kzalloc(sizeof(struct stu300_dev), GFP_KERNEL);
> +     dev = devm_kzalloc(&pdev->dev, sizeof(struct stu300_dev), GFP_KERNEL);
>       if (!dev) {
>               dev_err(&pdev->dev, "could not allocate device struct\n");
> -             ret = -ENOMEM;
> -             goto err_no_devmem;
> +             return -ENOMEM;
>       }
>  
>       bus_nr = pdev->id;
>       clk_name[3] += (char)bus_nr;
> -     dev->clk = clk_get(&pdev->dev, clk_name);
> +     dev->clk = devm_clk_get(&pdev->dev, clk_name);
>       if (IS_ERR(dev->clk)) {
> -             ret = PTR_ERR(dev->clk);
>               dev_err(&pdev->dev, "could not retrieve i2c bus clock\n");
> -             goto err_no_clk;
> +             return PTR_ERR(dev->clk);
>       }
>  
>       dev->pdev = pdev;
> -     platform_set_drvdata(pdev, dev);
> -
>       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -     if (!res) {
> -             ret = -ENOENT;
> -             goto err_no_resource;
> -     }
> +     if (!res)
> +             return -ENOENT;
>  
>       dev->phybase = res->start;
>       dev->physize = resource_size(res);

I'd think you can skip those, too?

Thanks,

   Wolfram

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

Attachment: signature.asc
Description: Digital signature

Reply via email to