Re: [PATCH] HSI: core: fix resource leaks in hsi_add_client_from_dt()

2021-04-09 Thread Jason Gunthorpe
On Fri, Apr 09, 2021 at 02:08:17PM +0300, Dan Carpenter wrote: > 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

[PATCH] HSI: core: fix resource leaks in hsi_add_client_from_dt()

2021-04-09 Thread Dan Carpenter
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