aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/hid/hid-elan.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2019-01-25 16:05:46 +0000
committerJiri Kosina <jkosina@suse.cz>2019-01-28 21:49:12 +0100
commit8471300fce4cf2593267d07d6db50709c89049b4 (patch)
tree997eb6babbd1291b416b46daf233a722491498a7 /drivers/hid/hid-elan.c
parentMerge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid (diff)
downloadwireguard-linux-8471300fce4cf2593267d07d6db50709c89049b4.tar.xz
wireguard-linux-8471300fce4cf2593267d07d6db50709c89049b4.zip
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>
Diffstat (limited to 'drivers/hid/hid-elan.c')
-rw-r--r--drivers/hid/hid-elan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-elan.c b/drivers/hid/hid-elan.c
index 0bfd6d1b44c1..1c62095cee99 100644
--- a/drivers/hid/hid-elan.c
+++ b/drivers/hid/hid-elan.c
@@ -393,7 +393,7 @@ static int elan_start_multitouch(struct hid_device *hdev)
* This byte sequence will enable multitouch mode and disable
* mouse emulation
*/
- const unsigned char buf[] = { 0x0D, 0x00, 0x03, 0x21, 0x00 };
+ static const unsigned char buf[] = { 0x0D, 0x00, 0x03, 0x21, 0x00 };
unsigned char *dmabuf = kmemdup(buf, sizeof(buf), GFP_KERNEL);
if (!dmabuf)