aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon
diff options
context:
space:
mode:
authorChanwoo Choi <cw00.choi@samsung.com>2013-02-13 04:35:05 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-02-13 11:35:43 -0500
commiteff7d74f5b88ef31ac47c6d96b1494db199705f5 (patch)
treeaba7824e8f2aa917c12589fb3d0a1d79ebd29f5b /drivers/extcon
parentfd116066d966549211b41d929feea5474d57461b (diff)
extcon: max77693: Convert to devm_input_allocate_device()
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Myungjoo Ham <myungjoo.ham@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/extcon')
-rw-r--r--drivers/extcon/extcon-max77693.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max77693.c b/drivers/extcon/extcon-max77693.c
index fb6527607a11..597f33c1f868 100644
--- a/drivers/extcon/extcon-max77693.c
+++ b/drivers/extcon/extcon-max77693.c
@@ -1066,7 +1066,7 @@ static int max77693_muic_probe(struct platform_device *pdev)
1066 } 1066 }
1067 1067
1068 /* Register input device for button of dock device */ 1068 /* Register input device for button of dock device */
1069 info->dock = input_allocate_device(); 1069 info->dock = devm_input_allocate_device(&pdev->dev);
1070 if (!info->dock) { 1070 if (!info->dock) {
1071 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__); 1071 dev_err(&pdev->dev, "%s: failed to allocate input\n", __func__);
1072 return -ENOMEM; 1072 return -ENOMEM;