extcon: arizona: Convert to devm_input_allocate_device()
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Thu, 10 Jan 2013 23:51:13 +0000 (08:51 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Tue, 15 Jan 2013 06:42:16 +0000 (15:42 +0900)
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com>
drivers/extcon/extcon-arizona.c

index 414aed50b1bc0aa52c32a49019eef746f7d63617..4454d2df3a582918d523be95aa94a7c16cad6e2c 100644 (file)
@@ -418,7 +418,7 @@ static int arizona_extcon_probe(struct platform_device *pdev)
 
        arizona_extcon_set_mode(info, 0);
 
-       info->input = input_allocate_device();
+       info->input = devm_input_allocate_device(&pdev->dev);
        if (!info->input) {
                dev_err(arizona->dev, "Can't allocate input dev\n");
                ret = -ENOMEM;
@@ -510,7 +510,6 @@ err_rise_wake:
 err_rise:
        arizona_free_irq(arizona, ARIZONA_IRQ_JD_RISE, info);
 err_input:
-       input_free_device(info->input);
 err_register:
        pm_runtime_disable(&pdev->dev);
        extcon_dev_unregister(&info->edev);
@@ -533,7 +532,6 @@ static int arizona_extcon_remove(struct platform_device *pdev)
        regmap_update_bits(arizona->regmap, ARIZONA_JACK_DETECT_ANALOGUE,
                           ARIZONA_JD1_ENA, 0);
        arizona_clk32k_disable(arizona);
-       input_unregister_device(info->input);
        extcon_dev_unregister(&info->edev);
 
        return 0;
This page took 0.035085 seconds and 5 git commands to generate.