mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
clk: zynqmp: Check the return type
Currently the return value of of_clk_add_hw_provider is ignored. lets check and return value. Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com> Link: https://lore.kernel.org/r/20210818065929.12835-2-shubhrajyoti.datta@xilinx.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
e73f0f0ee7
commit
47d0fbd1cd
@ -762,9 +762,7 @@ static int zynqmp_clk_setup(struct device_node *np)
|
|||||||
zynqmp_register_clocks(np);
|
zynqmp_register_clocks(np);
|
||||||
|
|
||||||
zynqmp_data->num = clock_max_idx;
|
zynqmp_data->num = clock_max_idx;
|
||||||
of_clk_add_hw_provider(np, of_clk_hw_onecell_get, zynqmp_data);
|
return of_clk_add_hw_provider(np, of_clk_hw_onecell_get, zynqmp_data);
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int zynqmp_clock_probe(struct platform_device *pdev)
|
static int zynqmp_clock_probe(struct platform_device *pdev)
|
||||||
|
Loading…
Reference in New Issue
Block a user