From: Colin Ian King Date: Thu, 28 May 2020 22:12:19 +0000 (+0100) Subject: clk: intel: remove redundant initialization of variable rate64 X-Git-Tag: v5.10.7~2373^2~5^3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d036466330d13039a09e407b23a0dabec1a9533a;p=platform%2Fkernel%2Flinux-rpi.git clk: intel: remove redundant initialization of variable rate64 The variable rate64 is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King Link: https://lkml.kernel.org/r/20200528221219.535804-1-colin.king@canonical.com Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/x86/clk-cgu.c b/drivers/clk/x86/clk-cgu.c index 802a7fa..56af0e0 100644 --- a/drivers/clk/x86/clk-cgu.c +++ b/drivers/clk/x86/clk-cgu.c @@ -538,7 +538,7 @@ lgm_clk_ddiv_round_rate(struct clk_hw *hw, unsigned long rate, struct lgm_clk_ddiv *ddiv = to_lgm_clk_ddiv(hw); u32 div, ddiv1, ddiv2; unsigned long flags; - u64 rate64 = rate; + u64 rate64; div = DIV_ROUND_CLOSEST_ULL((u64)*prate, rate);