All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ethan Tidmore" <ethantidmore06@gmail.com>
To: "Joshua Gu" <joshuagu789@gmail.com>, <gregkh@linuxfoundation.org>
Cc: <linux-staging@lists.linux.dev>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] staging: rtl8723bs: remove unnecessary spaces in rtw_security.c
Date: Sun, 15 Mar 2026 16:57:03 -0500	[thread overview]
Message-ID: <DH3OX3CFT586.2HUDPSK7M65AS@gmail.com> (raw)
In-Reply-To: <abcVPgxQfTykOvlQ@ubuntuarm64>

On Sun Mar 15, 2026 at 3:23 PM CDT, Joshua Gu wrote:
> Fix checkpatch.pl warnings about spaces after casts
>
> Signed-off-by: Joshua Gu <joshuagu789@gmail.com>
> ---

...

> -	ctr_preload[14] =  (unsigned char) (c / 256); /* Ctr */
> -	ctr_preload[15] =  (unsigned char) (c % 256);
> +	ctr_preload[14] =  (unsigned char)(c / 256); /* Ctr */
> +	ctr_preload[15] =  (unsigned char)(c % 256);

Since you're editing the line go ahead and remove that unneeded
whitespace:

	ctr_preload[14] = (unsigned char)(c / 256); /* Ctr */
	ctr_preload[15] = (unsigned char)(c % 256);

Thanks,

ET

  reply	other threads:[~2026-03-15 21:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-15 20:23 [PATCH] staging: rtl8723bs: remove unnecessary spaces in rtw_security.c Joshua Gu
2026-03-15 21:57 ` Ethan Tidmore [this message]
2026-03-16  1:46   ` [PATCH v2] " Joshua Gu
2026-03-18 15:43     ` Greg KH

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=DH3OX3CFT586.2HUDPSK7M65AS@gmail.com \
    --to=ethantidmore06@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=joshuagu789@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.