slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register
authorLin Yujun <linyujun809@huawei.com>
Wed, 14 Sep 2022 03:19:53 +0000 (11:19 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 24 Sep 2022 12:53:06 +0000 (14:53 +0200)
No error handling is performed when platform_device_add()
return fails. Refer to the error handling of driver_set_override(),
add error handling for platform_device_add().

Fixes: 917809e2280b ("slimbus: ngd: Add qcom SLIMBus NGD driver")
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Lin Yujun <linyujun809@huawei.com>
Link: https://lore.kernel.org/r/20220914031953.94061-1-linyujun809@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/slimbus/qcom-ngd-ctrl.c

index cec11aa106bf1114ec5199b8278238548aff053b..76c5e446d2433c4bcee6666af5ca78db89b55c62 100644 (file)
@@ -1470,7 +1470,13 @@ static int of_qcom_slim_ngd_register(struct device *parent,
                ngd->pdev->dev.of_node = node;
                ctrl->ngd = ngd;
 
-               platform_device_add(ngd->pdev);
+               ret = platform_device_add(ngd->pdev);
+               if (ret) {
+                       platform_device_put(ngd->pdev);
+                       kfree(ngd);
+                       of_node_put(node);
+                       return ret;
+               }
                ngd->base = ctrl->base + ngd->id * data->offset +
                                        (ngd->id - 1) * data->size;