]> www.infradead.org Git - linux.git/commitdiff
staging: rtl8192e: Fix multiple assignments in rtl_wx.c
authorAlien Wesley <alienwesley51@gmail.com>
Thu, 29 Aug 2024 11:36:06 +0000 (08:36 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Sep 2024 08:33:23 +0000 (10:33 +0200)
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>
drivers/staging/rtl8192e/rtl8192e/rtl_wx.c

index fc8e7f73b2a486c9117dea959a15de74ea973ce5..67c4793e0fc16c1c7bdb41b8554b375f9e6235bb 100644 (file)
@@ -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);