All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Roman Tereshonkov <roman.tereshonkov@nokia.com>
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH] The fix prevents kernel crash caused by twl4030 power button malfunction.
Date: Mon, 23 Jun 2008 13:43:36 +0300	[thread overview]
Message-ID: <20080623104335.GI7741@atomide.com> (raw)
In-Reply-To: <1213710486-19986-1-git-send-email-roman.tereshonkov@nokia.com>

* Roman Tereshonkov <roman.tereshonkov@nokia.com> [080617 16:49]:
> If i2c connection is broken the twl4030 power button driver is unregistered.
> The function input_free_device has to be called only when
> input_register_device failed. Otherwise input_unregister_device is used.

Pushing today.

Tony

> 
> Signed-off-by: Roman Tereshonkov <roman.tereshonkov@nokia.com>
> ---
>  drivers/i2c/chips/twl4030-pwrbutton.c |   10 ++++++----
>  1 files changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/i2c/chips/twl4030-pwrbutton.c b/drivers/i2c/chips/twl4030-pwrbutton.c
> index cbc31aa..a8258df 100644
> --- a/drivers/i2c/chips/twl4030-pwrbutton.c
> +++ b/drivers/i2c/chips/twl4030-pwrbutton.c
> @@ -95,8 +95,10 @@ static int __init twl4030_pwrbutton_init(void)
>  	powerbutton_dev->name = "triton2-pwrbutton";
>  
>  	err = input_register_device(powerbutton_dev);
> -	if (err)
> -		goto free_input_dev;
> +	if (err) {
> +		input_free_device(powerbutton_dev);
> +		goto free_irq_and_out;
> +	}
>  
>  	err = twl4030_i2c_read_u8(TWL4030_MODULE_INT, &value, PWR_IMR1);
>  	if (err) {
> @@ -122,7 +124,7 @@ static int __init twl4030_pwrbutton_init(void)
>  	}
>  
>  	err = twl4030_i2c_write_u8(TWL4030_MODULE_INT,
> -				   value | PWR_PWRON_BOTH , PWR_EDR1);
> +				   value | PWR_PWRON_BOTH, PWR_EDR1);
>  
>  	if (err) {
>  		printk(KERN_WARNING "I2C error %d while writing TWL4030"
> @@ -136,7 +138,7 @@ static int __init twl4030_pwrbutton_init(void)
>  
>  
>  free_input_dev:
> -	input_free_device(powerbutton_dev);
> +	input_unregister_device(powerbutton_dev);
>  free_irq_and_out:
>  	free_irq(TWL4030_PWRIRQ_PWRBTN, NULL);
>  out:
> -- 
> 1.5.5.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2008-06-23 10:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-17 13:48 [PATCH] The fix prevents kernel crash caused by twl4030 power button malfunction Roman Tereshonkov
2008-06-23 10:43 ` Tony Lindgren [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080623104335.GI7741@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=roman.tereshonkov@nokia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.