phy: phy-rockchip-inno-usb2: Handle failed extcon allocation better
authorDragan Simic <dsimic@manjaro.org>
Thu, 5 Sep 2024 08:28:23 +0000 (10:28 +0200)
committerVinod Koul <vkoul@kernel.org>
Mon, 7 Oct 2024 06:23:16 +0000 (11:53 +0530)
Return the actual error code upon failure to allocate extcon device, instead
of hardcoding -ENOMEM.  Use dev_err_probe() to also log appropriate messages,
which is fine because the containing function is used in the probe path.

Helped-by: Heiko Stubner <heiko@sntech.de>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Dragan Simic <dsimic@manjaro.org>
Link: https://lore.kernel.org/r/cc4995aa3e569be6bc23ca126b41fba82d50eeee.1725524802.git.dsimic@manjaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/rockchip/phy-rockchip-inno-usb2.c

index 03b7722..cf6b67d 100644 (file)
@@ -435,7 +435,8 @@ static int rockchip_usb2phy_extcon_register(struct rockchip_usb2phy *rphy)
                                                rockchip_usb2phy_extcon_cable);
 
                if (IS_ERR(edev))
-                       return -ENOMEM;
+                       return dev_err_probe(rphy->dev, PTR_ERR(edev),
+                                            "failed to allocate extcon device\n");
 
                ret = devm_extcon_dev_register(rphy->dev, edev);
                if (ret) {