diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-08-29 14:43:54 +0200 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2020-09-24 19:20:49 +0900 |
commit | 1f339f3384e85b3610482d4af7e500227311c5f2 (patch) | |
tree | 9a676df71a6c390b1bd3a7784de41912dcdc8de6 /drivers/extcon | |
parent | 4e984d83f444901e0187fdb228ce912e2fb7c6ff (diff) | |
download | linux-stable-1f339f3384e85b3610482d4af7e500227311c5f2.tar.gz linux-stable-1f339f3384e85b3610482d4af7e500227311c5f2.tar.bz2 linux-stable-1f339f3384e85b3610482d4af7e500227311c5f2.zip |
extcon: max77693: Return error code of extcon_dev_allocate()
devm_extcon_dev_allocate() can fail of multiple reasons. The call
returns proper error code on failure so pass it instead of fixed ENOMEM.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon')
-rw-r--r-- | drivers/extcon/extcon-max77693.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-max77693.c b/drivers/extcon/extcon-max77693.c index 32fc5a66ffa9..4a410fd2ea9a 100644 --- a/drivers/extcon/extcon-max77693.c +++ b/drivers/extcon/extcon-max77693.c @@ -1157,7 +1157,7 @@ static int max77693_muic_probe(struct platform_device *pdev) max77693_extcon_cable); if (IS_ERR(info->edev)) { dev_err(&pdev->dev, "failed to allocate memory for extcon\n"); - return -ENOMEM; + return PTR_ERR(info->edev); } ret = devm_extcon_dev_register(&pdev->dev, info->edev); |