Commit 14924ba2 authored by Soren Brinkmann's avatar Soren Brinkmann Committed by Michal Simek

clk/zynq/pll: Fix documentation for PLL register function

Signed-off-by: default avatarSoren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 3b2f64d0
...@@ -182,7 +182,13 @@ static const struct clk_ops zynq_pll_ops = { ...@@ -182,7 +182,13 @@ static const struct clk_ops zynq_pll_ops = {
/** /**
* clk_register_zynq_pll() - Register PLL with the clock framework * clk_register_zynq_pll() - Register PLL with the clock framework
* @np Pointer to the DT device node * @name PLL name
* @parent Parent clock name
* @pll_ctrl Pointer to PLL control register
* @pll_status Pointer to PLL status register
* @lock_index Bit index to this PLL's lock status bit in @pll_status
* @lock Register lock
* Returns handle to the registered clock.
*/ */
struct clk *clk_register_zynq_pll(const char *name, const char *parent, struct clk *clk_register_zynq_pll(const char *name, const char *parent,
void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index, void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment