diff options
author | Soren Brinkmann <soren.brinkmann@xilinx.com> | 2013-07-19 13:16:44 -0400 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2013-08-20 01:54:40 -0400 |
commit | 14924ba288921c536a72e71baeb14322ece44b39 (patch) | |
tree | 229b2107dc9870c8ad0159da5deb4ed4f2d602a4 | |
parent | 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b (diff) |
clk/zynq/pll: Fix documentation for PLL register function
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | drivers/clk/zynq/pll.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/clk/zynq/pll.c b/drivers/clk/zynq/pll.c index 47e307c25a7b..6daa7b6702ed 100644 --- a/drivers/clk/zynq/pll.c +++ b/drivers/clk/zynq/pll.c | |||
@@ -182,7 +182,13 @@ static const struct clk_ops zynq_pll_ops = { | |||
182 | 182 | ||
183 | /** | 183 | /** |
184 | * clk_register_zynq_pll() - Register PLL with the clock framework | 184 | * clk_register_zynq_pll() - Register PLL with the clock framework |
185 | * @np Pointer to the DT device node | 185 | * @name PLL name |
186 | * @parent Parent clock name | ||
187 | * @pll_ctrl Pointer to PLL control register | ||
188 | * @pll_status Pointer to PLL status register | ||
189 | * @lock_index Bit index to this PLL's lock status bit in @pll_status | ||
190 | * @lock Register lock | ||
191 | * Returns handle to the registered clock. | ||
186 | */ | 192 | */ |
187 | struct clk *clk_register_zynq_pll(const char *name, const char *parent, | 193 | struct clk *clk_register_zynq_pll(const char *name, const char *parent, |
188 | void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index, | 194 | void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index, |