Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1238472 > unrolled thread

Re: [PATCH] Input: da9052_onkey: Convert to managed resources

Started byDmitry Torokhov <dmitry.torokhov@gmail.com>
First post2015-10-02 19:50 +0200
Last post2015-10-02 20:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] Input: da9052_onkey: Convert to managed resources Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2015-10-02 19:50 +0200
    Re: [PATCH] Input: da9052_onkey: Convert to managed resources Vaishali Thakkar <vthakkar1994@gmail.com> - 2015-10-02 20:40 +0200

#1238472 — Re: [PATCH] Input: da9052_onkey: Convert to managed resources

FromDmitry Torokhov <dmitry.torokhov@gmail.com>
Date2015-10-02 19:50 +0200
SubjectRe: [PATCH] Input: da9052_onkey: Convert to managed resources
Message-ID<qfcD1-1XK-17@gated-at.bofh.it>
On Tue, Aug 04, 2015 at 12:52:53PM +0000, Opensource [Steve Twiss] wrote:
> On 27 July 2015 03:56, Vaishali Thakkar wrote:
> 
> > Subject: [PATCH] Input: da9052_onkey: Convert to managed resources
> > 
> > Use managed resource functions devm_input_allocate_device and
> > devm_kzalloc. To be compatible with the change, replace various
> > gotos by direct returns and drop unneeded labels.
> > 
> > Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
> > ---
> >  drivers/input/misc/da9052_onkey.c | 15 ++++-----------
> >  1 file changed, 4 insertions(+), 11 deletions(-)
> > 
> > diff --git a/drivers/input/misc/da9052_onkey.c
> > b/drivers/input/misc/da9052_onkey.c
> > index 266e07f..3243fe9 100644
> > --- a/drivers/input/misc/da9052_onkey.c
> > +++ b/drivers/input/misc/da9052_onkey.c
> > @@ -84,12 +84,11 @@ static int da9052_onkey_probe(struct
> > platform_device *pdev)
> >  		return -EINVAL;
> >  	}
> > 
> > -	onkey = kzalloc(sizeof(*onkey), GFP_KERNEL);
> > -	input_dev = input_allocate_device();
> > +	onkey = devm_kzalloc(&pdev->dev, sizeof(*onkey), GFP_KERNEL);
> > +	input_dev = devm_input_allocate_device(&pdev->dev);
> >  	if (!onkey || !input_dev) {
> >  		dev_err(&pdev->dev, "Failed to allocate memory\n");
> > -		error = -ENOMEM;
> > -		goto err_free_mem;
> > +		return -ENOMEM;
> >  	}
> > 
> >  	onkey->input = input_dev;
> > @@ -108,7 +107,7 @@ static int da9052_onkey_probe(struct
> > platform_device *pdev)
> >  	if (error < 0) {
> >  		dev_err(onkey->da9052->dev,
> >  			"Failed to register ONKEY IRQ: %d\n", error);
> > -		goto err_free_mem;
> > +		return error;
> >  	}
> > 
> >  	error = input_register_device(onkey->input);
> > @@ -124,9 +123,6 @@ static int da9052_onkey_probe(struct
> > platform_device *pdev)
> >  err_free_irq:
> >  	da9052_free_irq(onkey->da9052, DA9052_IRQ_NONKEY, onkey);
> >  	cancel_delayed_work_sync(&onkey->work);
> > -err_free_mem:
> > -	input_free_device(input_dev);
> > -	kfree(onkey);
> > 
> >  	return error;
> >  }
> > @@ -138,9 +134,6 @@ static int da9052_onkey_remove(struct
> > platform_device *pdev)
> >  	da9052_free_irq(onkey->da9052, DA9052_IRQ_NONKEY, onkey);
> >  	cancel_delayed_work_sync(&onkey->work);
> > 
> > -	input_unregister_device(onkey->input);
> > -	kfree(onkey);
> > -
> >  	return 0;
> >  }
> > 
> > --
> > 1.9.1
> 
> Acked-by: Steve Twiss <stwiss.opensource@diasemi.com>
> 

I prefer not to mix stategies of managing resources in a single driver.
I.e. either everything is devm* or nothing is.

Thanks.

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1238517

FromVaishali Thakkar <vthakkar1994@gmail.com>
Date2015-10-02 20:40 +0200
Message-ID<qfdpo-37r-25@gated-at.bofh.it>
In reply to#1238472
On Fri, Oct 2, 2015 at 11:13 PM, Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
> On Tue, Aug 04, 2015 at 12:52:53PM +0000, Opensource [Steve Twiss] wrote:
>> On 27 July 2015 03:56, Vaishali Thakkar wrote:
>>
>> > Subject: [PATCH] Input: da9052_onkey: Convert to managed resources
>> >
>> > Use managed resource functions devm_input_allocate_device and
>> > devm_kzalloc. To be compatible with the change, replace various
>> > gotos by direct returns and drop unneeded labels.
>> >
>> > Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
>> > ---
>> >  drivers/input/misc/da9052_onkey.c | 15 ++++-----------
>> >  1 file changed, 4 insertions(+), 11 deletions(-)
>> >
>> > diff --git a/drivers/input/misc/da9052_onkey.c
>> > b/drivers/input/misc/da9052_onkey.c
>> > index 266e07f..3243fe9 100644
>> > --- a/drivers/input/misc/da9052_onkey.c
>> > +++ b/drivers/input/misc/da9052_onkey.c
>> > @@ -84,12 +84,11 @@ static int da9052_onkey_probe(struct
>> > platform_device *pdev)
>> >             return -EINVAL;
>> >     }
>> >
>> > -   onkey = kzalloc(sizeof(*onkey), GFP_KERNEL);
>> > -   input_dev = input_allocate_device();
>> > +   onkey = devm_kzalloc(&pdev->dev, sizeof(*onkey), GFP_KERNEL);
>> > +   input_dev = devm_input_allocate_device(&pdev->dev);
>> >     if (!onkey || !input_dev) {
>> >             dev_err(&pdev->dev, "Failed to allocate memory\n");
>> > -           error = -ENOMEM;
>> > -           goto err_free_mem;
>> > +           return -ENOMEM;
>> >     }
>> >
>> >     onkey->input = input_dev;
>> > @@ -108,7 +107,7 @@ static int da9052_onkey_probe(struct
>> > platform_device *pdev)
>> >     if (error < 0) {
>> >             dev_err(onkey->da9052->dev,
>> >                     "Failed to register ONKEY IRQ: %d\n", error);
>> > -           goto err_free_mem;
>> > +           return error;
>> >     }
>> >
>> >     error = input_register_device(onkey->input);
>> > @@ -124,9 +123,6 @@ static int da9052_onkey_probe(struct
>> > platform_device *pdev)
>> >  err_free_irq:
>> >     da9052_free_irq(onkey->da9052, DA9052_IRQ_NONKEY, onkey);
>> >     cancel_delayed_work_sync(&onkey->work);
>> > -err_free_mem:
>> > -   input_free_device(input_dev);
>> > -   kfree(onkey);
>> >
>> >     return error;
>> >  }
>> > @@ -138,9 +134,6 @@ static int da9052_onkey_remove(struct
>> > platform_device *pdev)
>> >     da9052_free_irq(onkey->da9052, DA9052_IRQ_NONKEY, onkey);
>> >     cancel_delayed_work_sync(&onkey->work);
>> >
>> > -   input_unregister_device(onkey->input);
>> > -   kfree(onkey);
>> > -
>> >     return 0;
>> >  }
>> >
>> > --
>> > 1.9.1
>>
>> Acked-by: Steve Twiss <stwiss.opensource@diasemi.com>
>>
>
> I prefer not to mix stategies of managing resources in a single driver.
> I.e. either everything is devm* or nothing is.

Yeah, I understand. I guess this is an old patch. You can drop it.

Thanks

> Thanks.
>
> --
> Dmitry



-- 
Vaishali
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web