From: Dinh Nguyen <dinguyen@kernel.org>
To: Colin Ian King <colin.i.king@gmail.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Nathan Chancellor <nathan@kernel.org>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-clk@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, llvm@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clk: socfpga: remove redundant assignment after a mask operation
Date: Thu, 30 Dec 2021 12:10:40 -0600 [thread overview]
Message-ID: <7f5f8143-3eae-424f-b857-b57f66c96f65@kernel.org> (raw)
In-Reply-To: <20211230150321.167576-1-colin.i.king@gmail.com>
On 12/30/21 9:03 AM, Colin Ian King wrote:
> The assignment operation after a & mask operation is redundant, the
> variables being assigned are not used afterwards. Replace the &=
> operator with just & operator.
>
> Cleans up two clang-scan warnings:
> drivers/clk/socfpga/clk-gate.c:37:10: warning: Although the value stored
> to 'l4_src' is used in the enclosing expression, the value is never
> actually read from 'l4_src' [deadcode.DeadStores]
> return l4_src &= 0x1;
> ^ ~~~
> drivers/clk/socfpga/clk-gate.c:46:10: warning: Although the value stored
> to 'perpll_src' is used in the enclosing expression, the value is never
> actually read from 'perpll_src' [deadcode.DeadStores]
> return perpll_src &= 0x3;
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
> drivers/clk/socfpga/clk-gate.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/socfpga/clk-gate.c b/drivers/clk/socfpga/clk-gate.c
> index 1ec9678d8cd3..53d6e3ec4309 100644
> --- a/drivers/clk/socfpga/clk-gate.c
> +++ b/drivers/clk/socfpga/clk-gate.c
> @@ -34,7 +34,7 @@ static u8 socfpga_clk_get_parent(struct clk_hw *hwclk)
>
> if (streq(name, SOCFPGA_L4_MP_CLK)) {
> l4_src = readl(clk_mgr_base_addr + CLKMGR_L4SRC);
> - return l4_src &= 0x1;
> + return l4_src & 0x1;
> }
> if (streq(name, SOCFPGA_L4_SP_CLK)) {
> l4_src = readl(clk_mgr_base_addr + CLKMGR_L4SRC);
> @@ -43,7 +43,7 @@ static u8 socfpga_clk_get_parent(struct clk_hw *hwclk)
>
> perpll_src = readl(clk_mgr_base_addr + CLKMGR_PERPLL_SRC);
> if (streq(name, SOCFPGA_MMC_CLK))
> - return perpll_src &= 0x3;
> + return perpll_src & 0x3;
> if (streq(name, SOCFPGA_NAND_CLK) ||
> streq(name, SOCFPGA_NAND_X_CLK))
> return (perpll_src >> 2) & 3;
>
Acked-by: Dinh Nguyen <dinguyen@kernel.org>
next prev parent reply other threads:[~2021-12-30 18:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-30 15:03 Colin Ian King
2021-12-30 18:10 ` Dinh Nguyen [this message]
2022-01-06 0:33 ` Stephen Boyd
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7f5f8143-3eae-424f-b857-b57f66c96f65@kernel.org \
--to=dinguyen@kernel.org \
--cc=colin.i.king@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=mturquette@baylibre.com \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=sboyd@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®