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