diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2014-05-29 21:13:15 -0400 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2014-06-16 00:33:19 -0400 |
commit | ac65a625a0961e7a96f2e5e182073691d0474c04 (patch) | |
tree | 5eb4f46f622366621a0d965569add88a830a6a97 /drivers/extcon/extcon-palmas.c | |
parent | 24a279b1cae0af0eb4bf0dd8b3ef85956a96ff7a (diff) |
extcon: Set parent device of extcon device using prameter of devm_extcon_dev_allocate
This patch set the parent device of extcon device using first parameter of
devm_extco_dev_allocate() to remove duplicate code on all of extcon provider
drivers.
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Reported-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Tested-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Cc: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Graeme Gregory <gg@slimlogic.co.uk>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Cc: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-palmas.c')
-rw-r--r-- | drivers/extcon/extcon-palmas.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c index 5efa96c00196..230e1220ce48 100644 --- a/drivers/extcon/extcon-palmas.c +++ b/drivers/extcon/extcon-palmas.c | |||
@@ -194,7 +194,6 @@ static int palmas_usb_probe(struct platform_device *pdev) | |||
194 | return -ENOMEM; | 194 | return -ENOMEM; |
195 | } | 195 | } |
196 | palmas_usb->edev->name = kstrdup(node->name, GFP_KERNEL); | 196 | palmas_usb->edev->name = kstrdup(node->name, GFP_KERNEL); |
197 | palmas_usb->edev->dev.parent = palmas_usb->dev; | ||
198 | palmas_usb->edev->mutually_exclusive = mutually_exclusive; | 197 | palmas_usb->edev->mutually_exclusive = mutually_exclusive; |
199 | 198 | ||
200 | status = devm_extcon_dev_register(&pdev->dev, palmas_usb->edev); | 199 | status = devm_extcon_dev_register(&pdev->dev, palmas_usb->edev); |