[PATCH 03/05] input: enable onkey driver of max8925

Haojian Zhuang haojian.zhuang at gmail.com
Wed May 19 21:46:51 EDT 2010


On Thu, May 20, 2010 at 12:30 AM, Dmitry Torokhov
<dmitry.torokhov at gmail.com> wrote:
> Hi Haojian,
>
> On Wed, May 19, 2010 at 02:58:07PM +0800, Haojian Zhuang wrote:
>> +
>> +/* MAX8925 gives us an interrupt when ONKEY is held for 3 seconds. */
>> +static irqreturn_t max8925_onkey_handler(int irq, void *data)
>> +{
>> +     struct max8925_onkey_info *info = data;
>> +
>> +     input_report_key(info->idev, KEY_POWER, 1);
>> +     input_sync(info->idev);
>> +
>> +     /* Enable hardreset to halt if system isn't shutdown on time */
>
> A comment mentioning that max8925_set_bits() may sleep would instantly
> remove all concerns why threaded IRQ is being used here.
>
>> +     ret = request_threaded_irq(irq, NULL, max8925_onkey_handler,
>> +                                IRQF_ONESHOT, "onkey", info);
>> +     if (ret < 0) {
>> +             dev_err(chip->dev, "Failed to request IRQ: #%d: %d\n",
>> +                     irq, ret);
>> +             goto out;
>> +     }
>> +
>> +     info->idev = input_allocate_device();
>> +     if (!info->idev) {
>> +             dev_err(chip->dev, "Failed to allocate input dev\n");
>> +             ret = -ENOMEM;
>> +             goto out_input;
>> +     }
>> +
>
> You need to allocate device before requesting IRQ otherwise it may crash
> and burn.
>
>> +static int __devexit max8925_onkey_remove(struct platform_device *pdev)
>> +{
>> +     struct max8925_onkey_info *info = platform_get_drvdata(pdev);
>> +
>> +     if (info) {
>
> How can info be NULL?
>
>> +             free_irq(info->irq, info);
>> +             input_unregister_device(info->idev);
>> +             kfree(info);
>
> platform_set_drvdata(pdev, NULL); - please clean up after yourself.
>
> Thanks.
>
> --
> Dmitry
>

Thanks a lot. Now the updated patch is attached and pasted in below.

Best Regards
Haojian


More information about the linux-arm-kernel mailing list