HSI: core: fix resource leaks in hsi_add_client_from_dt()
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 9 Apr 2021 11:08:17 +0000 (14:08 +0300)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Thu, 15 Apr 2021 22:14:49 +0000 (00:14 +0200)
If some of the allocations fail between the dev_set_name() and the
device_register() then the name will not be freed.  Fix this by
moving dev_set_name() directly in front of the call to device_register().

Fixes: a2aa24734d9d ("HSI: Add common DT binding for HSI client devices")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/hsi/hsi_core.c

index c3fb5be..ec90713 100644 (file)
@@ -210,8 +210,6 @@ static void hsi_add_client_from_dt(struct hsi_port *port,
        if (err)
                goto err;
 
-       dev_set_name(&cl->device, "%s", name);
-
        err = hsi_of_property_parse_mode(client, "hsi-mode", &mode);
        if (err) {
                err = hsi_of_property_parse_mode(client, "hsi-rx-mode",
@@ -293,6 +291,7 @@ static void hsi_add_client_from_dt(struct hsi_port *port,
        cl->device.release = hsi_client_release;
        cl->device.of_node = client;
 
+       dev_set_name(&cl->device, "%s", name);
        if (device_register(&cl->device) < 0) {
                pr_err("hsi: failed to register client: %s\n", name);
                put_device(&cl->device);