From: Sander Vanheule <sander@svanheule.net>
To: Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
linux-spi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, bert@biot.com, mail@birger-koblitz.de
Subject: Re: [PATCH v2 2/2] spi: realtek-rtl: Improve readability when clearing the size mask
Date: Thu, 28 Jul 2022 20:40:33 +0200 [thread overview]
Message-ID: <fe43a69a23308580eac251fdfdde66d848b64381.camel@svanheule.net> (raw)
In-Reply-To: <20220728152118.1429161-3-martin.blumenstingl@googlemail.com>
On Thu, 2022-07-28 at 17:21 +0200, Martin Blumenstingl wrote:
> Define the bitmask RTL_SPI_SFCSR_LEN_MASK so it only sets the bits of
> this specific part of the register instead of setting all bits except
> the relevant ones. This makes it consistent with single bit macros in
> the spi-realtek-rtl driver as well as with the approach that many other
> drivers use.
>
> Suggested-by: Sander Vanheule <sander@svanheule.net>
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
FWIW
Tested-by: Sander Vanheule <sander@svanheule.net>
on my Netgear GS110TPP v1.
> ---
> drivers/spi/spi-realtek-rtl.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/spi/spi-realtek-rtl.c b/drivers/spi/spi-realtek-rtl.c
> index 866b0477dbd7..0371d44cbfbd 100644
> --- a/drivers/spi/spi-realtek-rtl.c
> +++ b/drivers/spi/spi-realtek-rtl.c
> @@ -20,7 +20,7 @@ struct rtspi {
> #define RTL_SPI_SFCSR_CSB1 BIT(30)
> #define RTL_SPI_SFCSR_RDY BIT(27)
> #define RTL_SPI_SFCSR_CS BIT(24)
> -#define RTL_SPI_SFCSR_LEN_MASK ~(0x03 << 28)
> +#define RTL_SPI_SFCSR_LEN_MASK (0x03 << 28)
> #define RTL_SPI_SFCSR_LEN1 (0x00 << 28)
> #define RTL_SPI_SFCSR_LEN4 (0x03 << 28)
>
> @@ -49,7 +49,7 @@ static void set_size(struct rtspi *rtspi, int size)
> u32 value;
>
> value = readl(REG(RTL_SPI_SFCSR));
> - value &= RTL_SPI_SFCSR_LEN_MASK;
> + value &= ~RTL_SPI_SFCSR_LEN_MASK;
> if (size == 4)
> value |= RTL_SPI_SFCSR_LEN4;
> else if (size == 1)
prev parent reply other threads:[~2022-07-28 18:40 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-28 15:21 [PATCH v2 0/2] spi: realtek-rtl: two small improvements Martin Blumenstingl
2022-07-28 15:21 ` [PATCH v2 1/2] spi: realtek-rtl: Add compile testing support Martin Blumenstingl
2022-07-28 18:26 ` Sander Vanheule
2022-07-28 15:21 ` [PATCH v2 2/2] spi: realtek-rtl: Improve readability when clearing the size mask Martin Blumenstingl
2022-07-28 18:40 ` Sander Vanheule [this message]
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=fe43a69a23308580eac251fdfdde66d848b64381.camel@svanheule.net \
--to=sander@svanheule.net \
--cc=bert@biot.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=mail@birger-koblitz.de \
--cc=martin.blumenstingl@googlemail.com \
/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;
as well as URLs for NNTP newsgroup(s).