OSDN Git Service

mwifiex: make arrays static const, makes object smaller
authorColin Ian King <colin.king@canonical.com>
Thu, 19 Aug 2021 12:16:51 +0000 (13:16 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Sat, 21 Aug 2021 17:50:23 +0000 (20:50 +0300)
commitda2c9cedc0d0047d3b93764e870969e74835149a
tree5a52bddadbe5ace7e8805d5b5e70691252c364be
parent090f2c5d3d077793da6a78db8d9535bc9a759857
mwifiex: make arrays static const, makes object smaller

Don't populate the arrays wpa_oui and wps_oui on the stack but
instead them static const. Makes the object code smaller by 63 bytes:

Before:
   text   data  bss     dec    hex filename
  29453   5451   64   34968   8898 .../wireless/marvell/mwifiex/sta_ioctl.o

After:
   text   data  bss     dec    hex filename
  29356   5611   64   35031   88d7 ../wireless/marvell/mwifiex/sta_ioctl.o

(gcc version 10.3.0)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210819121651.7566-1-colin.king@canonical.com
drivers/net/wireless/marvell/mwifiex/sta_ioctl.c