Message ID | CAKohpomC1KTLk=UVim4gdYhJ5kngTZHOUvUgckD75AVH1w+FHw@mail.gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Viresh, On Fri, Nov 09, 2012 at 10:34:35PM +0530, Viresh Kumar wrote: > On 9 November 2012 20:57, Viresh Kumar <viresh.kumar@linaro.org> wrote: > > This patch frees stmpe-ts driver from tension of freeing resources :) > > devm_* derivatives of multiple routines are used while allocating resources, > > which would be freed automatically by kernel. > > > > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> > > Fixup: > > commit dda6d45808d65aaf8b0d4153e7a418b255365818 > Author: Viresh Kumar <viresh.kumar@linaro.org> > Date: Fri Nov 9 22:28:26 2012 +0530 > > fixup! input: stmpe-ts: Use devm_*() routines > --- > drivers/input/touchscreen/stmpe-ts.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/input/touchscreen/stmpe-ts.c > b/drivers/input/touchscreen/stmpe-ts.c > index 9896095..f2cb15d 100644 > --- a/drivers/input/touchscreen/stmpe-ts.c > +++ b/drivers/input/touchscreen/stmpe-ts.c > @@ -344,8 +344,6 @@ static int __devexit stmpe_ts_remove(struct > platform_device *pdev) Sometimes your mailer does wrap long lines, please make sure to turn it off for patches. There is no need to resend this one. Thanks.
diff --git a/drivers/input/touchscreen/stmpe-ts.c b/drivers/input/touchscreen/stmpe-ts.c index 9896095..f2cb15d 100644 --- a/drivers/input/touchscreen/stmpe-ts.c +++ b/drivers/input/touchscreen/stmpe-ts.c @@ -344,8 +344,6 @@ static int __devexit stmpe_ts_remove(struct platform_device *pdev) stmpe_disable(ts->stmpe, STMPE_BLOCK_TOUCHSCREEN); - input_unregister_device(ts->idev); - return 0; }