summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/input/keyboard/nomadik-ske-keypad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/keyboard/nomadik-ske-keypad.c b/drivers/input/keyboard/nomadik-ske-keypad.c
index 156f64b1339..6a0707f7f76 100644
--- a/drivers/input/keyboard/nomadik-ske-keypad.c
+++ b/drivers/input/keyboard/nomadik-ske-keypad.c
@@ -850,7 +850,6 @@ static int __devexit ske_keypad_remove(struct platform_device *pdev)
kfree(keypad->keys);
kfree(keypad->ske_cols);
kfree(keypad->ske_rows);
- kfree(keypad->gpio_input_irq);
input_unregister_device(keypad->input);
sysfs_remove_group(&pdev->dev.kobj, &ske_attr_group);
@@ -869,6 +868,7 @@ static int __devexit ske_keypad_remove(struct platform_device *pdev)
for (i = 0; i < keypad->board->krow; i++)
free_irq(keypad->gpio_input_irq[i], keypad);
+ kfree(keypad->gpio_input_irq);
free_irq(keypad->irq, keypad);
regulator_put(keypad->regulator);