diff options
author | Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com> | 2022-04-11 12:04:41 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-08-23 04:07:13 +0200 |
commit | 787ddddcbc43ab158cc15c36986c2c64b6fc84aa (patch) | |
tree | c3cb626d628718c6a2e52259319234d6c8a71185 /drivers/clk/xilinx | |
parent | clk: clocking-wizard: Move clocking-wizard out (diff) | |
download | linux-787ddddcbc43ab158cc15c36986c2c64b6fc84aa.tar.xz linux-787ddddcbc43ab158cc15c36986c2c64b6fc84aa.zip |
clk: clocking-wizard: Rename nr-outputs to xlnx,nr-outputs
Rename nr-outputs to xlnx,output.
Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
Link: https://lore.kernel.org/r/20220411100443.15132-4-shubhrajyoti.datta@xilinx.com
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/xilinx')
-rw-r--r-- | drivers/clk/xilinx/clk-xlnx-clock-wizard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/xilinx/clk-xlnx-clock-wizard.c b/drivers/clk/xilinx/clk-xlnx-clock-wizard.c index ec377f0d569b..1e0818eb0435 100644 --- a/drivers/clk/xilinx/clk-xlnx-clock-wizard.c +++ b/drivers/clk/xilinx/clk-xlnx-clock-wizard.c @@ -480,7 +480,7 @@ static int clk_wzrd_probe(struct platform_device *pdev) goto err_disable_clk; } - ret = of_property_read_u32(np, "nr-outputs", &nr_outputs); + ret = of_property_read_u32(np, "xlnx,nr-outputs", &nr_outputs); if (ret || nr_outputs > WZRD_NUM_OUTPUTS) { ret = -EINVAL; goto err_disable_clk; |