summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorAlien Wesley <alienwesley51@gmail.com>2024-08-29 08:36:06 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-09-03 10:33:23 +0200
commit35c75ce7a79d050497e087f8fb350922333c2aeb (patch)
treef695012028f83ae8a6c3c3dc52299129d25b9a50 /drivers/staging
parent0348e117d9599b49940b968583d6e076a8004bc7 (diff)
downloadlinux-stable-35c75ce7a79d050497e087f8fb350922333c2aeb.tar.gz
linux-stable-35c75ce7a79d050497e087f8fb350922333c2aeb.tar.bz2
linux-stable-35c75ce7a79d050497e087f8fb350922333c2aeb.zip
staging: rtl8192e: Fix multiple assignments in rtl_wx.c
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@gmail.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240829113606.76645-1-alienwesley51@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/rtl8192e/rtl8192e/rtl_wx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c b/drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
index fc8e7f73b2a4..67c4793e0fc1 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;
+ ieee->group_key_type = KEY_TYPE_NA;
rtl92e_cam_reset(dev);
memset(priv->rtllib->swcamtable, 0,
sizeof(struct sw_cam_table) * 32);