[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <01f4337d-baff-4df6-9367-3e9cf2fe32d1@gmail.com>
Date: Sun, 25 Aug 2024 19:35:43 +0200
From: Philipp Hortmann <philipp.g.hortmann@...il.com>
To: Alien Wesley <alienwesley51@...il.com>, gregkh@...uxfoundation.org,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org,
~lkcamp/patches@...ts.sr.ht
Subject: Re: [PATCH] staging: rtl8192e: Fix multiple assignments in
rtl_wx.c:529
On 8/25/24 17:45, Alien Wesley wrote:
> Separated assignments for pairwise_key_type and group_key_type
> in order to silence the following checkpatch warning.
>
> CHECK: multiple assignments should be avoided.
>
> Signed-off-by: Alien Wesley <alienwesley51@...il.com>
> ---
> drivers/staging/rtl8192e/rtl8192e/rtl_wx.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
> index fc8e7f73b2a4..47f1adf30ab4 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
> @@ -526,7 +526,8 @@ static int _rtl92e_wx_set_enc(struct net_device *dev,
> mutex_unlock(&priv->wx_mutex);
>
> if (wrqu->encoding.flags & IW_ENCODE_DISABLED) {
> - ieee->pairwise_key_type = ieee->group_key_type = KEY_TYPE_NA;
> + ieee->pairwise_key_type = KEY_TYPE_NA;
This line contains two spaces in front of "=".
> + ieee->group_key_type = KEY_TYPE_NA;
> rtl92e_cam_reset(dev);
> memset(priv->rtllib->swcamtable, 0,
> sizeof(struct sw_cam_table) * 32);
Powered by blists - more mailing lists