mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 07:30:53 +07:00
bus: ti-sysc: Adjust exception handling in sysc_child_add_named_clock()
Add a jump target so that a call of the function “clk_put” can be better reused at the end of this function. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
020003f763
commit
cb6cfe2eae
@ -1778,9 +1778,8 @@ static int sysc_child_add_named_clock(struct sysc *ddata,
|
||||
|
||||
clk = clk_get(child, name);
|
||||
if (!IS_ERR(clk)) {
|
||||
clk_put(clk);
|
||||
|
||||
return -EEXIST;
|
||||
error = -EEXIST;
|
||||
goto put_clk;
|
||||
}
|
||||
|
||||
clk = clk_get(ddata->dev, name);
|
||||
@ -1790,7 +1789,7 @@ static int sysc_child_add_named_clock(struct sysc *ddata,
|
||||
l = clkdev_create(clk, name, dev_name(child));
|
||||
if (!l)
|
||||
error = -ENOMEM;
|
||||
|
||||
put_clk:
|
||||
clk_put(clk);
|
||||
|
||||
return error;
|
||||
|
Loading…
Reference in New Issue
Block a user