Input: imx_keypad - switch to using managed resources
Using devm_ functions can make the code cleaner and simpler. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
2c0a4f8b87
commit
da5bce199f
|
@ -448,24 +448,17 @@ static int imx_keypad_probe(struct platform_device *pdev)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
res = request_mem_region(res->start, resource_size(res), pdev->name);
|
input_dev = devm_input_allocate_device(&pdev->dev);
|
||||||
if (res == NULL) {
|
|
||||||
dev_err(&pdev->dev, "failed to request I/O memory\n");
|
|
||||||
return -EBUSY;
|
|
||||||
}
|
|
||||||
|
|
||||||
input_dev = input_allocate_device();
|
|
||||||
if (!input_dev) {
|
if (!input_dev) {
|
||||||
dev_err(&pdev->dev, "failed to allocate the input device\n");
|
dev_err(&pdev->dev, "failed to allocate the input device\n");
|
||||||
error = -ENOMEM;
|
return -ENOMEM;
|
||||||
goto failed_rel_mem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
keypad = kzalloc(sizeof(struct imx_keypad), GFP_KERNEL);
|
keypad = devm_kzalloc(&pdev->dev, sizeof(struct imx_keypad),
|
||||||
|
GFP_KERNEL);
|
||||||
if (!keypad) {
|
if (!keypad) {
|
||||||
dev_err(&pdev->dev, "not enough memory for driver data\n");
|
dev_err(&pdev->dev, "not enough memory for driver data\n");
|
||||||
error = -ENOMEM;
|
return -ENOMEM;
|
||||||
goto failed_free_input;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
keypad->input_dev = input_dev;
|
keypad->input_dev = input_dev;
|
||||||
|
@ -475,18 +468,14 @@ static int imx_keypad_probe(struct platform_device *pdev)
|
||||||
setup_timer(&keypad->check_matrix_timer,
|
setup_timer(&keypad->check_matrix_timer,
|
||||||
imx_keypad_check_for_events, (unsigned long) keypad);
|
imx_keypad_check_for_events, (unsigned long) keypad);
|
||||||
|
|
||||||
keypad->mmio_base = ioremap(res->start, resource_size(res));
|
keypad->mmio_base = devm_ioremap_resource(&pdev->dev, res);
|
||||||
if (keypad->mmio_base == NULL) {
|
if (IS_ERR(keypad->mmio_base))
|
||||||
dev_err(&pdev->dev, "failed to remap I/O memory\n");
|
return PTR_ERR(keypad->mmio_base);
|
||||||
error = -ENOMEM;
|
|
||||||
goto failed_free_priv;
|
|
||||||
}
|
|
||||||
|
|
||||||
keypad->clk = clk_get(&pdev->dev, NULL);
|
keypad->clk = devm_clk_get(&pdev->dev, NULL);
|
||||||
if (IS_ERR(keypad->clk)) {
|
if (IS_ERR(keypad->clk)) {
|
||||||
dev_err(&pdev->dev, "failed to get keypad clock\n");
|
dev_err(&pdev->dev, "failed to get keypad clock\n");
|
||||||
error = PTR_ERR(keypad->clk);
|
return PTR_ERR(keypad->clk);
|
||||||
goto failed_unmap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Init the Input device */
|
/* Init the Input device */
|
||||||
|
@ -502,7 +491,7 @@ static int imx_keypad_probe(struct platform_device *pdev)
|
||||||
keypad->keycodes, input_dev);
|
keypad->keycodes, input_dev);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&pdev->dev, "failed to build keymap\n");
|
dev_err(&pdev->dev, "failed to build keymap\n");
|
||||||
goto failed_clock_put;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search for rows and cols enabled */
|
/* Search for rows and cols enabled */
|
||||||
|
@ -527,60 +516,23 @@ static int imx_keypad_probe(struct platform_device *pdev)
|
||||||
imx_keypad_inhibit(keypad);
|
imx_keypad_inhibit(keypad);
|
||||||
clk_disable_unprepare(keypad->clk);
|
clk_disable_unprepare(keypad->clk);
|
||||||
|
|
||||||
error = request_irq(irq, imx_keypad_irq_handler, 0,
|
error = devm_request_irq(&pdev->dev, irq, imx_keypad_irq_handler, 0,
|
||||||
pdev->name, keypad);
|
pdev->name, keypad);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&pdev->dev, "failed to request IRQ\n");
|
dev_err(&pdev->dev, "failed to request IRQ\n");
|
||||||
goto failed_clock_put;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Register the input device */
|
/* Register the input device */
|
||||||
error = input_register_device(input_dev);
|
error = input_register_device(input_dev);
|
||||||
if (error) {
|
if (error) {
|
||||||
dev_err(&pdev->dev, "failed to register input device\n");
|
dev_err(&pdev->dev, "failed to register input device\n");
|
||||||
goto failed_free_irq;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
platform_set_drvdata(pdev, keypad);
|
platform_set_drvdata(pdev, keypad);
|
||||||
device_init_wakeup(&pdev->dev, 1);
|
device_init_wakeup(&pdev->dev, 1);
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
failed_free_irq:
|
|
||||||
free_irq(irq, pdev);
|
|
||||||
failed_clock_put:
|
|
||||||
clk_put(keypad->clk);
|
|
||||||
failed_unmap:
|
|
||||||
iounmap(keypad->mmio_base);
|
|
||||||
failed_free_priv:
|
|
||||||
kfree(keypad);
|
|
||||||
failed_free_input:
|
|
||||||
input_free_device(input_dev);
|
|
||||||
failed_rel_mem:
|
|
||||||
release_mem_region(res->start, resource_size(res));
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int imx_keypad_remove(struct platform_device *pdev)
|
|
||||||
{
|
|
||||||
struct imx_keypad *keypad = platform_get_drvdata(pdev);
|
|
||||||
struct resource *res;
|
|
||||||
|
|
||||||
dev_dbg(&pdev->dev, ">%s\n", __func__);
|
|
||||||
|
|
||||||
platform_set_drvdata(pdev, NULL);
|
|
||||||
|
|
||||||
input_unregister_device(keypad->input_dev);
|
|
||||||
|
|
||||||
free_irq(keypad->irq, keypad);
|
|
||||||
clk_put(keypad->clk);
|
|
||||||
|
|
||||||
iounmap(keypad->mmio_base);
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
||||||
release_mem_region(res->start, resource_size(res));
|
|
||||||
|
|
||||||
kfree(keypad);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -640,7 +592,6 @@ static struct platform_driver imx_keypad_driver = {
|
||||||
.of_match_table = of_match_ptr(imx_keypad_of_match),
|
.of_match_table = of_match_ptr(imx_keypad_of_match),
|
||||||
},
|
},
|
||||||
.probe = imx_keypad_probe,
|
.probe = imx_keypad_probe,
|
||||||
.remove = imx_keypad_remove,
|
|
||||||
};
|
};
|
||||||
module_platform_driver(imx_keypad_driver);
|
module_platform_driver(imx_keypad_driver);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue