]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
HID: elan: Make array buf static, shrinks object size
authorColin Ian King <colin.king@canonical.com>
Fri, 25 Jan 2019 16:05:46 +0000 (16:05 +0000)
committerJiri Kosina <jkosina@suse.cz>
Mon, 28 Jan 2019 20:49:12 +0000 (21:49 +0100)
commit8471300fce4cf2593267d07d6db50709c89049b4
tree997eb6babbd1291b416b46daf233a722491498a7
parent787a3b4322763284a594a5dd3680508c0bfb20b0
HID: elan: Make array buf static, shrinks object size

Don't populate the array buf on the stack but instead make it
static. Makes the object code smaller by 43 bytes:

Before:
   text    data     bss     dec     hex filename
   7769    1520       0    9289    2449 drivers/hid/hid-elan.o

After:
   text    data     bss     dec     hex filename
   7662    1584       0    9246    241e drivers/hid/hid-elan.o

(gcc version 8.2.0 x86_64)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-elan.c