clk: clk-loongson2: Switch to use devm_clk_hw_register_fixed_rate_parent_data()

Since commit 706ae6446494 ("clk: fixed-rate: add
devm_clk_hw_register_fixed_rate_parent_data()"), we can use the
devm_clk_hw_register_fixed_rate_parent_data() helper and from then on
there is no need to manually unregister the fixed rate hw.

Since clk_hw_unregister_fixed_rate() was not called before, we also fix
the memory leak that was present.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
Link: https://lore.kernel.org/r/8733a7485619bdb791de25201a3d7984d1849c9f.1736856470.git.zhoubinbin@loongson.cn
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by Binbin Zhou and committed by Stephen Boyd 54e020bd 838c0a41

+2 -2
+2 -2
drivers/clk/clk-loongson2.c
··· 335 335 &clp->clk_lock); 336 336 break; 337 337 case CLK_TYPE_FIXED: 338 - hw = clk_hw_register_fixed_rate_parent_data(dev, p->name, pdata, 339 - 0, p->fixed_rate); 338 + hw = devm_clk_hw_register_fixed_rate_parent_data(dev, p->name, pdata, 339 + 0, p->fixed_rate); 340 340 break; 341 341 default: 342 342 return dev_err_probe(dev, -EINVAL, "Invalid clk type\n");