Input: byd - make array seq static, reduces object code size

Don't populate the array seq on the stack, instead make it static.
Makes the object code smaller by over 1100 bytes:

Before:
text data bss dec hex filename
6152 1216 64 7432 1d08 drivers/input/mouse/byd.o

After:
text data bss dec hex filename
4974 1280 64 6318 18ae drivers/input/mouse/byd.o

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by Colin Ian King and committed by Dmitry Torokhov 08d6ac9e da1a42cd

+1 -1
+1 -1
drivers/input/mouse/byd.c
··· 344 344 u8 param[4]; 345 345 size_t i; 346 346 347 - const struct { 347 + static const struct { 348 348 u16 command; 349 349 u8 arg; 350 350 } seq[] = {