]> Git Repo - linux.git/commit
rndis_wlan: Remove logically dead code
authorGustavo A. R. Silva <[email protected]>
Tue, 5 May 2020 23:52:05 +0000 (18:52 -0500)
committerKalle Valo <[email protected]>
Tue, 12 May 2020 08:53:19 +0000 (11:53 +0300)
commitf2cd32a443da694ac4e28fbf4ac6f9d5cc63a539
tree00976c6bfa0b111071da0f9087478f9f53e196eb
parent78a6fb42f67c567f80338a9eaec0090678dbd58e
rndis_wlan: Remove logically dead code

caps_buf is always of size sizeof(*caps) because
sizeof(caps->auth_encr_pair) * 16 is always zero. Notice
that when using zero-length arrays, sizeof evaluates to zero[1].

So, the code introduced by
commit 0308383f9591 ("rndis_wlan: get max_num_pmkids from device")
is logically dead, hence is never executed and can be removed. As a
consequence, the rest of the related code can be refactored a bit.

Notice that this code has been out there since March 2010.

[1] https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
Link: https://lore.kernel.org/r/20200505235205.GA18539@embeddedor
Link: https://lore.kernel.org/r/[email protected]
drivers/net/wireless/rndis_wlan.c
This page took 0.045807 seconds and 4 git commands to generate.