]> git.karo-electronics.de Git - linux-beck.git/commitdiff
clk: sunxi: remove unused variable
authorArnd Bergmann <arnd@arndb.de>
Wed, 15 Jun 2016 15:55:23 +0000 (17:55 +0200)
committerMaxime Ripard <maxime.ripard@free-electrons.com>
Thu, 16 Jun 2016 07:18:29 +0000 (09:18 +0200)
The only use of the local num_parents variable was remove,
so we now get a warning:

drivers/clk/sunxi/clk-sun4i-tcon-ch1.c: In function 'tcon_ch1_get_parent':
drivers/clk/sunxi/clk-sun4i-tcon-ch1.c:82:6: error: unused variable 'num_parents' [-Werror=unused-variable]

This removes the variable.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 4de2d58bc973 ("clk: sunxi: tcon-ch1: Do not return a negative error in get_parent")
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
drivers/clk/sunxi/clk-sun4i-tcon-ch1.c

index 248585238b1cc031111794a323a47855c1222a35..b6d29d1bedcaead534320d5a2cad836005821aac 100644 (file)
@@ -79,7 +79,6 @@ static int tcon_ch1_is_enabled(struct clk_hw *hw)
 static u8 tcon_ch1_get_parent(struct clk_hw *hw)
 {
        struct tcon_ch1_clk *tclk = hw_to_tclk(hw);
-       int num_parents = clk_hw_get_num_parents(hw);
        u32 reg;
 
        reg = readl(tclk->reg) >> TCON_CH1_SCLK2_MUX_SHIFT;