Commit 35c75ce7 authored by Alien Wesley's avatar Alien Wesley Committed by Greg Kroah-Hartman

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: default avatarAlien Wesley <alienwesley51@gmail.com>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240829113606.76645-1-alienwesley51@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0348e117
...@@ -526,7 +526,8 @@ static int _rtl92e_wx_set_enc(struct net_device *dev, ...@@ -526,7 +526,8 @@ static int _rtl92e_wx_set_enc(struct net_device *dev,
mutex_unlock(&priv->wx_mutex); mutex_unlock(&priv->wx_mutex);
if (wrqu->encoding.flags & IW_ENCODE_DISABLED) { 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); rtl92e_cam_reset(dev);
memset(priv->rtllib->swcamtable, 0, memset(priv->rtllib->swcamtable, 0,
sizeof(struct sw_cam_table) * 32); sizeof(struct sw_cam_table) * 32);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment