Input: tc3589x-keypad - switch to using managed resources
Let's switch the driver to use managed resources, this will simplify error handling and driver unbinding logic. Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
e571c73ee4
commit
be97217779
1 changed files with 20 additions and 38 deletions
|
@ -17,6 +17,7 @@
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/mfd/tc3589x.h>
|
#include <linux/mfd/tc3589x.h>
|
||||||
|
#include <linux/device.h>
|
||||||
|
|
||||||
/* Maximum supported keypad matrix row/columns size */
|
/* Maximum supported keypad matrix row/columns size */
|
||||||
#define TC3589x_MAX_KPROW 8
|
#define TC3589x_MAX_KPROW 8
|
||||||
|
@ -389,12 +390,15 @@ static int tc3589x_keypad_probe(struct platform_device *pdev)
|
||||||
if (irq < 0)
|
if (irq < 0)
|
||||||
return irq;
|
return irq;
|
||||||
|
|
||||||
keypad = kzalloc(sizeof(struct tc_keypad), GFP_KERNEL);
|
keypad = devm_kzalloc(&pdev->dev, sizeof(struct tc_keypad),
|
||||||
input = input_allocate_device();
|
GFP_KERNEL);
|
||||||
if (!keypad || !input) {
|
if (!keypad)
|
||||||
dev_err(&pdev->dev, "failed to allocate keypad memory\n");
|
return -ENOMEM;
|
||||||
error = -ENOMEM;
|
|
||||||
goto err_free_mem;
|
input = devm_input_allocate_device(&pdev->dev);
|
||||||
|
if (!input) {
|
||||||
|
dev_err(&pdev->dev, "failed to allocate input device\n");
|
||||||
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
keypad->board = plat;
|
keypad->board = plat;
|
||||||
|
@ -413,7 +417,7 @@ static int tc3589x_keypad_probe(struct platform_device *pdev)
|
||||||
NULL, input);
|
NULL, input);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&pdev->dev, "Failed to build keymap\n");
|
dev_err(&pdev->dev, "Failed to build keymap\n");
|
||||||
goto err_free_mem;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
keypad->keymap = input->keycode;
|
keypad->keymap = input->keycode;
|
||||||
|
@ -424,20 +428,23 @@ static int tc3589x_keypad_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
input_set_drvdata(input, keypad);
|
input_set_drvdata(input, keypad);
|
||||||
|
|
||||||
error = request_threaded_irq(irq, NULL, tc3589x_keypad_irq,
|
tc3589x_keypad_disable(keypad);
|
||||||
|
|
||||||
|
error = devm_request_threaded_irq(&pdev->dev, irq,
|
||||||
|
NULL, tc3589x_keypad_irq,
|
||||||
plat->irqtype | IRQF_ONESHOT,
|
plat->irqtype | IRQF_ONESHOT,
|
||||||
"tc3589x-keypad", keypad);
|
"tc3589x-keypad", keypad);
|
||||||
if (error < 0) {
|
if (error) {
|
||||||
dev_err(&pdev->dev,
|
dev_err(&pdev->dev,
|
||||||
"Could not allocate irq %d,error %d\n",
|
"Could not allocate irq %d,error %d\n",
|
||||||
irq, error);
|
irq, error);
|
||||||
goto err_free_mem;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
error = input_register_device(input);
|
error = input_register_device(input);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&pdev->dev, "Could not register input device\n");
|
dev_err(&pdev->dev, "Could not register input device\n");
|
||||||
goto err_free_irq;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* let platform decide if keypad is a wakeup source or not */
|
/* let platform decide if keypad is a wakeup source or not */
|
||||||
|
@ -446,30 +453,6 @@ static int tc3589x_keypad_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
platform_set_drvdata(pdev, keypad);
|
platform_set_drvdata(pdev, keypad);
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
err_free_irq:
|
|
||||||
free_irq(irq, keypad);
|
|
||||||
err_free_mem:
|
|
||||||
input_free_device(input);
|
|
||||||
kfree(keypad);
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int tc3589x_keypad_remove(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
struct tc_keypad *keypad = platform_get_drvdata(pdev);
|
|
||||||
int irq = platform_get_irq(pdev, 0);
|
|
||||||
|
|
||||||
if (!keypad->keypad_stopped)
|
|
||||||
tc3589x_keypad_disable(keypad);
|
|
||||||
|
|
||||||
free_irq(irq, keypad);
|
|
||||||
|
|
||||||
input_unregister_device(keypad->input);
|
|
||||||
|
|
||||||
kfree(keypad);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -521,7 +504,6 @@ static struct platform_driver tc3589x_keypad_driver = {
|
||||||
.pm = &tc3589x_keypad_dev_pm_ops,
|
.pm = &tc3589x_keypad_dev_pm_ops,
|
||||||
},
|
},
|
||||||
.probe = tc3589x_keypad_probe,
|
.probe = tc3589x_keypad_probe,
|
||||||
.remove = tc3589x_keypad_remove,
|
|
||||||
};
|
};
|
||||||
module_platform_driver(tc3589x_keypad_driver);
|
module_platform_driver(tc3589x_keypad_driver);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue