OSDN Git Service

clk: sunxi: Use proper type for of_clk_get_parent_count() return value
authorStephen Boyd <sboyd@codeaurora.org>
Sat, 20 Feb 2016 01:44:27 +0000 (17:44 -0800)
committerStephen Boyd <sboyd@codeaurora.org>
Sat, 27 Feb 2016 00:01:32 +0000 (16:01 -0800)
The return type of of_clk_get_parent_count() is an unsigned int
now, so let's update the code here to be more explicit about the
range of values we can test for.

Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/sunxi/clk-sun6i-ar100.c

index 2088768..c903705 100644 (file)
@@ -181,7 +181,7 @@ static int sun6i_a31_ar100_clk_probe(struct platform_device *pdev)
        struct ar100_clk *ar100;
        struct resource *r;
        struct clk *clk;
-       int nparents;
+       unsigned int nparents;
 
        ar100 = devm_kzalloc(&pdev->dev, sizeof(*ar100), GFP_KERNEL);
        if (!ar100)