diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-02-20 02:49:23 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-02-27 01:01:32 +0100 |
commit | 921bacfa34d48c019bb068257c0947d728662bf3 (patch) | |
tree | 834bcfc833f2819d7b4103536086c2f90569bcd7 /drivers/clk/ti/dpll.c | |
parent | clk: sunxi: Use proper type for of_clk_get_parent_count() return value (diff) | |
download | linux-921bacfa34d48c019bb068257c0947d728662bf3.tar.xz linux-921bacfa34d48c019bb068257c0947d728662bf3.zip |
clk: ti: Update for of_clk_get_parent_count() returning unsigned int
Change the types here to unsigned int instead of int and update
the checks for == 0 instead < 1 to be more explicit about what's
going on now that of_clk_get_parent_count() has changed return
types.
Cc: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/ti/dpll.c')
-rw-r--r-- | drivers/clk/ti/dpll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/dpll.c b/drivers/clk/ti/dpll.c index f8306f1c30f1..3bc9959f71c3 100644 --- a/drivers/clk/ti/dpll.c +++ b/drivers/clk/ti/dpll.c @@ -374,7 +374,7 @@ static void __init of_ti_dpll_setup(struct device_node *node, init->ops = ops; init->num_parents = of_clk_get_parent_count(node); - if (init->num_parents < 1) { + if (!init->num_parents) { pr_err("%s must have parent(s)\n", node->name); goto cleanup; } |