From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Date: Tue, 24 Dec 2019 08:10:38 +0000 Subject: Re: [PATCH -next] clk: bm1800: Remove set but not used variable 'fref' Message-Id: <20191224081039.6C9D220643@mail.kernel.org> List-Id: References: <20191129033534.188257-1-yuehaibing@huawei.com> In-Reply-To: <20191129033534.188257-1-yuehaibing@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Manivannan Sadhasivam , Michael Turquette , YueHaibing Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org, Hulk Robot , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org Quoting YueHaibing (2019-11-28 19:35:34) > Fixes gcc '-Wunused-but-set-variable' warning: > > drivers/clk/clk-bm1880.c: In function 'bm1880_pll_rate_calc': > drivers/clk/clk-bm1880.c:477:13: warning: > variable 'fref' set but not used [-Wunused-but-set-variable] > > It is never used, so remove it. > > Reported-by: Hulk Robot > Signed-off-by: YueHaibing > --- Applied to clk-next From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C7197C2D0CF for ; Tue, 24 Dec 2019 08:10:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8B04B20706 for ; Tue, 24 Dec 2019 08:10:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1577175040; bh=1L4dp+QiqPHu7wf6E/7HV0BXGvYjQV2y0FxjdXBHZ9s=; h=In-Reply-To:References:Cc:From:To:Subject:Date:List-ID:From; b=qqBgWLbUqNL6maL2hHpWgSr4p6BKh2Xo1FSH4YOdP63B5e1PSiODpKT81oy+u0Pqp EVR2e4v9DR2z+Fu6gJJwzJ+FjJ1dYUhv4jOp0bGMAN96UDqEjv4kXZIgSyjZRjZfsw s9fFr/9WTPcQHEvXXX3APDOe9hHOIpJlcEEPFDbs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726076AbfLXIKk (ORCPT ); Tue, 24 Dec 2019 03:10:40 -0500 Received: from mail.kernel.org ([198.145.29.99]:56952 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726065AbfLXIKk (ORCPT ); Tue, 24 Dec 2019 03:10:40 -0500 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6C9D220643; Tue, 24 Dec 2019 08:10:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1577175039; bh=1L4dp+QiqPHu7wf6E/7HV0BXGvYjQV2y0FxjdXBHZ9s=; h=In-Reply-To:References:Cc:From:To:Subject:Date:From; b=RY7QYj5lLy1i/HTUw0wApZHy5nhxgS1JolwiFEk9QB9rxouqZ4NmlxOSYzpJ6Dct+ cxdSEqyKOyfU152A91Juvdc5de3oRiufgv4sKmJR6032Wnw9hvP+Be4osDJ5fvlHb/ m4T4LhRz0bt5CrrX81pbtANWSI4/DXmNyXXvtAgs= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20191129033534.188257-1-yuehaibing@huawei.com> References: <20191129033534.188257-1-yuehaibing@huawei.com> Cc: YueHaibing , linux-arm-kernel@lists.infradead.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Hulk Robot From: Stephen Boyd To: Manivannan Sadhasivam , Michael Turquette , YueHaibing Subject: Re: [PATCH -next] clk: bm1800: Remove set but not used variable 'fref' User-Agent: alot/0.8.1 Date: Tue, 24 Dec 2019 00:10:38 -0800 Message-Id: <20191224081039.6C9D220643@mail.kernel.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting YueHaibing (2019-11-28 19:35:34) > Fixes gcc '-Wunused-but-set-variable' warning: >=20 > drivers/clk/clk-bm1880.c: In function 'bm1880_pll_rate_calc': > drivers/clk/clk-bm1880.c:477:13: warning: > variable 'fref' set but not used [-Wunused-but-set-variable] >=20 > It is never used, so remove it. >=20 > Reported-by: Hulk Robot > Signed-off-by: YueHaibing > --- Applied to clk-next From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8D028C2D0CF for ; Tue, 24 Dec 2019 08:10:47 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5FCFD20643 for ; Tue, 24 Dec 2019 08:10:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Ajv48J/O"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="RY7QYj5l" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 5FCFD20643 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:Message-Id:Date:Subject:To:From: References:In-Reply-To:MIME-Version:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=wQwWZRRz0UsqTt58u0pO71pI+yMN7K2y0+hoHQcjL2A=; b=Ajv48J/OyqUHLq YsmYT+S3dZbgcmB0TWWRMRYctcU4XcbaCjRhgj8ifDeCR6D8BmnEzqKBLt/cv7PDKAhW1kLnaez4F DXP/FfTwI2mX7IDObPlOxKWxvtjMrpySbUpShidMiarxoRWty6GiUNfuqsii4twrVFvviT51Tu1Ps 8ZeMU+RRHJULXqXn2T21zk3ZIbDYJ2STnekSMv9TaBTLMMz/ZgMgH+ZYbCkxheUzfiYPd/61N+KHC t5doLu7GoWYGG2zZZkXzOrHBC1hzwbdcohuoXAQBtq0pM2EnvW4E47U9VrP4Hc9UOrIh0pVI4hQGH GZhl5xOBOk20SA0QtLzg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1ijfH9-0008JC-2l; Tue, 24 Dec 2019 08:10:43 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1ijfH5-0008Ij-Tu for linux-arm-kernel@lists.infradead.org; Tue, 24 Dec 2019 08:10:41 +0000 Received: from kernel.org (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6C9D220643; Tue, 24 Dec 2019 08:10:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1577175039; bh=1L4dp+QiqPHu7wf6E/7HV0BXGvYjQV2y0FxjdXBHZ9s=; h=In-Reply-To:References:Cc:From:To:Subject:Date:From; b=RY7QYj5lLy1i/HTUw0wApZHy5nhxgS1JolwiFEk9QB9rxouqZ4NmlxOSYzpJ6Dct+ cxdSEqyKOyfU152A91Juvdc5de3oRiufgv4sKmJR6032Wnw9hvP+Be4osDJ5fvlHb/ m4T4LhRz0bt5CrrX81pbtANWSI4/DXmNyXXvtAgs= MIME-Version: 1.0 In-Reply-To: <20191129033534.188257-1-yuehaibing@huawei.com> References: <20191129033534.188257-1-yuehaibing@huawei.com> From: Stephen Boyd To: Manivannan Sadhasivam , Michael Turquette , YueHaibing Subject: Re: [PATCH -next] clk: bm1800: Remove set but not used variable 'fref' User-Agent: alot/0.8.1 Date: Tue, 24 Dec 2019 00:10:38 -0800 Message-Id: <20191224081039.6C9D220643@mail.kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20191224_001039_986986_88770668 X-CRM114-Status: UNSURE ( 5.93 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: YueHaibing , kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org, Hulk Robot , linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org Quoting YueHaibing (2019-11-28 19:35:34) > Fixes gcc '-Wunused-but-set-variable' warning: > > drivers/clk/clk-bm1880.c: In function 'bm1880_pll_rate_calc': > drivers/clk/clk-bm1880.c:477:13: warning: > variable 'fref' set but not used [-Wunused-but-set-variable] > > It is never used, so remove it. > > Reported-by: Hulk Robot > Signed-off-by: YueHaibing > --- Applied to clk-next _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel