Skip to content

Commit

Permalink
clk: zynqmp: Correct vpll warning message
Browse files Browse the repository at this point in the history
Trivial fix.

Signed-off-by: Philip Molloy <philip-molloy@idexx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
  • Loading branch information
pamolloy authored and Michal Simek committed Jul 18, 2018
1 parent ca21fbf commit 1ae2318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/zynqmp/pll.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ static int zynqmp_pll_set_rate(struct clk_hw *hw, unsigned long rate,

/* Account for vpll_to_lpd and dp_video_ref */
if (children > 2)
WARN(1, "Two devices are using vpll which is forbidden\n");
WARN(1, "More than two devices are using the vpll, which is forbidden\n");

rate_div = ((rate * FRAC_DIV) / parent_rate);
m = rate_div / FRAC_DIV;
Expand Down

0 comments on commit 1ae2318

Please sign in to comment.