mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
staging: rtl8192e: Fix Assignment operator '=' in rtl_wx.c
Separated assignments for pairwise_key_type and group_key_type in order to silence the following checkpatch warning. CHECK: Assignment operator '=' should be on the previous line. Signed-off-by: Alien Wesley <alienwesley51@gmail.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240829123251.83574-1-alienwesley51@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
35c75ce7a7
commit
eea0007f6a
|
|
@ -677,8 +677,8 @@ static int _rtl92e_wx_set_encode_ext(struct net_device *dev,
|
|||
|
||||
if ((encoding->flags & IW_ENCODE_DISABLED) ||
|
||||
ext->alg == IW_ENCODE_ALG_NONE) {
|
||||
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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user