diff options
Diffstat (limited to 'drivers/input/keyboard/pmic8xxx-keypad.c')
-rw-r--r-- | drivers/input/keyboard/pmic8xxx-keypad.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/keyboard/pmic8xxx-keypad.c b/drivers/input/keyboard/pmic8xxx-keypad.c index 6229c3e8e78b..e7cc51d0fb34 100644 --- a/drivers/input/keyboard/pmic8xxx-keypad.c +++ b/drivers/input/keyboard/pmic8xxx-keypad.c | |||
@@ -700,9 +700,9 @@ static int __devinit pmic8xxx_kp_probe(struct platform_device *pdev) | |||
700 | return 0; | 700 | return 0; |
701 | 701 | ||
702 | err_pmic_reg_read: | 702 | err_pmic_reg_read: |
703 | free_irq(kp->key_stuck_irq, NULL); | 703 | free_irq(kp->key_stuck_irq, kp); |
704 | err_req_stuck_irq: | 704 | err_req_stuck_irq: |
705 | free_irq(kp->key_sense_irq, NULL); | 705 | free_irq(kp->key_sense_irq, kp); |
706 | err_gpio_config: | 706 | err_gpio_config: |
707 | err_get_irq: | 707 | err_get_irq: |
708 | input_free_device(kp->input); | 708 | input_free_device(kp->input); |
@@ -717,8 +717,8 @@ static int __devexit pmic8xxx_kp_remove(struct platform_device *pdev) | |||
717 | struct pmic8xxx_kp *kp = platform_get_drvdata(pdev); | 717 | struct pmic8xxx_kp *kp = platform_get_drvdata(pdev); |
718 | 718 | ||
719 | device_init_wakeup(&pdev->dev, 0); | 719 | device_init_wakeup(&pdev->dev, 0); |
720 | free_irq(kp->key_stuck_irq, NULL); | 720 | free_irq(kp->key_stuck_irq, kp); |
721 | free_irq(kp->key_sense_irq, NULL); | 721 | free_irq(kp->key_sense_irq, kp); |
722 | input_unregister_device(kp->input); | 722 | input_unregister_device(kp->input); |
723 | kfree(kp); | 723 | kfree(kp); |
724 | 724 | ||