Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753083AbeAATfI (ORCPT + 1 other); Mon, 1 Jan 2018 14:35:08 -0500 Received: from mail-wm0-f67.google.com ([74.125.82.67]:39404 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753031AbeAATfF (ORCPT ); Mon, 1 Jan 2018 14:35:05 -0500 X-Google-Smtp-Source: ACJfBosA4TwZ9i2vM9ozuJItYtSEsytr4FQLNfLU0QPa9jiSINLqlbhjxSIOCC9CqB4h2eHhZrZ6jg== From: Bryan O'Donoghue To: mturquette@baylibre.com, sboyd@codeaurora.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org Cc: Bryan O'Donoghue , Tony Prisk Subject: [PATCH v2 17/34] clk: vt8500: match temp holder variable to fn return type Date: Mon, 1 Jan 2018 19:34:43 +0000 Message-Id: <1514835300-381-3-git-send-email-pure.logic@nexus-software.ie> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1514835300-381-1-git-send-email-pure.logic@nexus-software.ie> References: <1514835300-381-1-git-send-email-pure.logic@nexus-software.ie> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: vtwm_pll_round_rate() returns an unsigned long. This patch changes the internal holder variable from signed to unsigned long for the sake of completeness and neatness. Signed-off-by: Bryan O'Donoghue Cc: Michael Turquette Cc: Stephen Boyd Cc: linux-clk@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: Tony Prisk --- drivers/clk/clk-vt8500.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/clk-vt8500.c b/drivers/clk/clk-vt8500.c index 750c087..a4aa0bf 100644 --- a/drivers/clk/clk-vt8500.c +++ b/drivers/clk/clk-vt8500.c @@ -609,7 +609,7 @@ static unsigned long vtwm_pll_round_rate(struct clk_hw *hw, unsigned long rate, { struct clk_pll *pll = to_clk_pll(hw); u32 filter, mul, div1, div2; - long round_rate; + unsigned long round_rate; int ret = 1; switch (pll->type) { -- 2.7.4