Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: sunxi: remove unused variable

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>

authored by

Arnd Bergmann and committed by
Maxime Ripard
9ca91a65 07ea0b4d

-1
-1
drivers/clk/sunxi/clk-sun4i-tcon-ch1.c
··· 79 79 static u8 tcon_ch1_get_parent(struct clk_hw *hw) 80 80 { 81 81 struct tcon_ch1_clk *tclk = hw_to_tclk(hw); 82 - int num_parents = clk_hw_get_num_parents(hw); 83 82 u32 reg; 84 83 85 84 reg = readl(tclk->reg) >> TCON_CH1_SCLK2_MUX_SHIFT;