Quoting Geert Uytterhoeven (2019-04-04 04:37:22) > Hi Mike, Stephen, > > The following changes since commit 9e98c678c2d6ae3a17cb2de55d17f69dddaa231b: > > Linux 5.1-rc1 (2019-03-17 14:22:26 -0700) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/clk-renesas-for-v5.2-tag1 > > for you to fetch changes up to b953eaaeb58efc944f51cffd3f6838657958f0f8: > > clk: renesas: rcar-gen3: Fix cpg_sd_clock_round_rate() return value (2019-04-04 11:54:46 +0200) > > ---------------------------------------------------------------- > clk: renesas: Updates for v5.2 > > - Add missing PCI USB clock on RZ/N1, > - Add Z2 (Cortex-A53) clocks on R-Car E3 and RZ/G2E, incl. a new > helper in <linux/math64.h>, > - Small fixes and cleanups. > Thanks. Pulled into clk-next with the below fix squashed on top. ----8<---- From: Stephen Boyd <sboyd@xxxxxxxxxx> Subject: [PATCH] clk: renesas: rcar-gen3: Remove unused variable This variable is no longer used and the compiler rightly complains that it should be removed. Drop it to silence the following: drivers/clk/renesas/rcar-gen3-cpg.c: In function 'cpg_sd_clk_register': drivers/clk/renesas/rcar-gen3-cpg.c:386:15: warning: unused variable 'i' [-Wunused-variable] unsigned int i; Cc: Geert Uytterhoeven <geert+renesas@xxxxxxxxx> Fixes: b953eaaeb58e ("clk: renesas: rcar-gen3: Fix cpg_sd_clock_round_rate() return value") Signed-off-by: Stephen Boyd <sboyd@xxxxxxxxxx> --- drivers/clk/renesas/rcar-gen3-cpg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/clk/renesas/rcar-gen3-cpg.c b/drivers/clk/renesas/rcar-gen3-cpg.c index dc62ed0dadc2..d25c8ba00a65 100644 --- a/drivers/clk/renesas/rcar-gen3-cpg.c +++ b/drivers/clk/renesas/rcar-gen3-cpg.c @@ -383,7 +383,6 @@ static struct clk * __init cpg_sd_clk_register(const char *name, struct clk_init_data init; struct sd_clock *clock; struct clk *clk; - unsigned int i; u32 val; clock = kzalloc(sizeof(*clock), GFP_KERNEL);