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=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham 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 C4DBDC4321A for ; Thu, 27 Jun 2019 23:52:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 945702133F for ; Thu, 27 Jun 2019 23:52:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1561679528; bh=TLxkXBYcOQkQ2yiDZYNy+ckFRMqJ/xF6bF/ER5dH6oo=; h=In-Reply-To:References:To:From:Subject:Cc:Date:List-ID:From; b=BpQha6Rb+xhilANojCFF6RdNfPAFzd6H6ZSSo0YpWAy0iefjqmItlV4/+GYQjkFnT hhVpeSXntGpQpWM7gRSsVEhXW7CDCFsl3jZ0QK8KtCOuO7AdcTyL9vSBEFN9Yuvv2y JBGacXoigzjLN7rrZt0jJwq4mgFACXkc2J/cUAzE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726567AbfF0XwI (ORCPT ); Thu, 27 Jun 2019 19:52:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:36562 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726514AbfF0XwI (ORCPT ); Thu, 27 Jun 2019 19:52:08 -0400 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 E247D20815; Thu, 27 Jun 2019 23:52:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1561679527; bh=TLxkXBYcOQkQ2yiDZYNy+ckFRMqJ/xF6bF/ER5dH6oo=; h=In-Reply-To:References:To:From:Subject:Cc:Date:From; b=brVVYSMICoK5hJs7dp/cs8rUY0QUpRVWtXg25ZwxXq52vfljx9TT0QgDsRoejgLlf 4QJuOH7kQ5OusWkYZryl5zcVBZmswpFhB4Unz5099QZkzeLozf+kVTfZJeVXqx0iIO FFRAtvZJfHgfRH+t8U0NVC+bZMYFqGVF/oaItmBQ= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20190627221507.83942-1-nhuck@google.com> References: <20190627221507.83942-1-nhuck@google.com> To: Nathan Huckleberry , fparent@baylibre.com, matthias.bgg@gmail.com, mturquette@baylibre.com From: Stephen Boyd Subject: Re: [PATCH] clk: mediatek: Fix -Wunused-const-variable Cc: linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org, Nathan Huckleberry , clang-built-linux@googlegroups.com User-Agent: alot/0.8.1 Date: Thu, 27 Jun 2019 16:52:06 -0700 Message-Id: <20190627235206.E247D20815@mail.kernel.org> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Nathan Huckleberry (2019-06-27 15:15:07) > Clang produces the following warning >=20 > drivers/clk/mediatek/clk-mt8516.c:234:27: warning: unused variable > 'ddrphycfg_parents' [-Wunused-const-variable] static const char * const > ddrphycfg_parents[] __initconst =3D { >=20 > This variable has never been used. Deleting it to cleanup the warning. >=20 > Cc: clang-built-linux@googlegroups.com > Link: https://github.com/ClangBuiltLinux/linux/issues/523 > Signed-off-by: Nathan Huckleberry This patch has already been applied. It would be great if you could try applying the patch to linux-next first before sending patches to make sure they're still relevant. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Subject: Re: [PATCH] clk: mediatek: Fix -Wunused-const-variable Date: Thu, 27 Jun 2019 16:52:06 -0700 Message-ID: <20190627235206.E247D20815@mail.kernel.org> References: <20190627221507.83942-1-nhuck@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: <20190627221507.83942-1-nhuck@google.com> Sender: linux-kernel-owner@vger.kernel.org To: fparent@baylibre.com, matthias.bgg@gmail.com, mturquette@baylibre.com Cc: linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org, Nathan Huckleberry , clang-built-linux@googlegroups.com List-Id: linux-mediatek@lists.infradead.org Quoting Nathan Huckleberry (2019-06-27 15:15:07) > Clang produces the following warning >=20 > drivers/clk/mediatek/clk-mt8516.c:234:27: warning: unused variable > 'ddrphycfg_parents' [-Wunused-const-variable] static const char * const > ddrphycfg_parents[] __initconst =3D { >=20 > This variable has never been used. Deleting it to cleanup the warning. >=20 > Cc: clang-built-linux@googlegroups.com > Link: https://github.com/ClangBuiltLinux/linux/issues/523 > Signed-off-by: Nathan Huckleberry This patch has already been applied. It would be great if you could try applying the patch to linux-next first before sending patches to make sure they're still relevant. 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=-9.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 CE79BC4321A for ; Thu, 27 Jun 2019 23:52:16 +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 A4F5220815 for ; Thu, 27 Jun 2019 23:52:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="u0HmGy0d"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="brVVYSMI" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A4F5220815 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:From:To: 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=bLnhtHxulsNF6okvj1yi4qIAjMNzHuSpqIZZ3nFGues=; b=u0HmGy0dxopG/q qFe6++Y9OxcJ6imH848w2OrgS8aP9gxFURpFkcmdUGphsHSXA4J8kNncenR1aI81HymKbmEw97pmy G/+EBlD3Ce360ffuSlNdZZZIdmwO8cYUM/DNd/TnYBg1XQpSX0u7Tor7QPCmN11hI4SRKkXRVbdhl 2D4p9ObCHfY1G1kpQ1o3y9AcZCPtZM7i7+3DaYPlOAZbhhNFUlzmQ6DgKhwQYYI7Az2xzzP9EPApF vCvmGDIjEcPvtSnlQfyDCB/FLx5HVJ6nQdnARTQyNF0KEk5yvw4i0R0+ieT1T9pSXUzGdz0KOj7fp pB4cnwh/QbFwlGVCkmSg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92 #3 (Red Hat Linux)) id 1hgeBZ-0002sf-UX; Thu, 27 Jun 2019 23:52:13 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92 #3 (Red Hat Linux)) id 1hgeBW-0002m9-Pp; Thu, 27 Jun 2019 23:52:12 +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 E247D20815; Thu, 27 Jun 2019 23:52:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1561679527; bh=TLxkXBYcOQkQ2yiDZYNy+ckFRMqJ/xF6bF/ER5dH6oo=; h=In-Reply-To:References:To:From:Subject:Cc:Date:From; b=brVVYSMICoK5hJs7dp/cs8rUY0QUpRVWtXg25ZwxXq52vfljx9TT0QgDsRoejgLlf 4QJuOH7kQ5OusWkYZryl5zcVBZmswpFhB4Unz5099QZkzeLozf+kVTfZJeVXqx0iIO FFRAtvZJfHgfRH+t8U0NVC+bZMYFqGVF/oaItmBQ= MIME-Version: 1.0 In-Reply-To: <20190627221507.83942-1-nhuck@google.com> References: <20190627221507.83942-1-nhuck@google.com> To: Nathan Huckleberry , fparent@baylibre.com, matthias.bgg@gmail.com, mturquette@baylibre.com From: Stephen Boyd Subject: Re: [PATCH] clk: mediatek: Fix -Wunused-const-variable User-Agent: alot/0.8.1 Date: Thu, 27 Jun 2019 16:52:06 -0700 Message-Id: <20190627235206.E247D20815@mail.kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190627_165210_861579_4A0CA91C X-CRM114-Status: UNSURE ( 6.55 ) 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: linux-kernel@vger.kernel.org, Nathan Huckleberry , clang-built-linux@googlegroups.com, linux-mediatek@lists.infradead.org, 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 Nathan Huckleberry (2019-06-27 15:15:07) > Clang produces the following warning > > drivers/clk/mediatek/clk-mt8516.c:234:27: warning: unused variable > 'ddrphycfg_parents' [-Wunused-const-variable] static const char * const > ddrphycfg_parents[] __initconst = { > > This variable has never been used. Deleting it to cleanup the warning. > > Cc: clang-built-linux@googlegroups.com > Link: https://github.com/ClangBuiltLinux/linux/issues/523 > Signed-off-by: Nathan Huckleberry This patch has already been applied. It would be great if you could try applying the patch to linux-next first before sending patches to make sure they're still relevant. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel