diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-08-22 17:07:49 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2025-01-09 10:23:26 +0100 |
commit | c7571e1a675d0b2827c3b8338d3a9b56ad580121 (patch) | |
tree | ee101cafdb9e1bc556d49d045be221501042919c | |
parent | 2a770b49b1bf00fca5473cb386eaf36d21d17d4b (diff) |
HID: uclogic: make const read-only array touch_ring_model_params_buf static
Don't populate the const read-only array touch_ring_model_params_buf on
the stack at run time, instead make it static const.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
-rw-r--r-- | drivers/hid/hid-uclogic-params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-uclogic-params.c b/drivers/hid/hid-uclogic-params.c index ef26c7defcf6..a6044996abf2 100644 --- a/drivers/hid/hid-uclogic-params.c +++ b/drivers/hid/hid-uclogic-params.c @@ -842,7 +842,7 @@ static int uclogic_params_huion_init(struct uclogic_params *params, __u8 *params_ptr = NULL; size_t params_len = 0; /* Parameters string descriptor of a model with touch ring (HS610) */ - const __u8 touch_ring_model_params_buf[] = { + static const __u8 touch_ring_model_params_buf[] = { 0x13, 0x03, 0x70, 0xC6, 0x00, 0x06, 0x7C, 0x00, 0xFF, 0x1F, 0xD8, 0x13, 0x03, 0x0D, 0x10, 0x01, 0x04, 0x3C, 0x3E |