HID: hid-asus: add const to read-only outgoing usb buffer
[ Upstream commit 06ae5afce8cc1f7621cc5c7751e449ce20d68af7 ] In the function asus_kbd_set_report the parameter buf is read-only as it gets copied in a memory portion suitable for USB transfer, but the parameter is not marked as const: add the missing const and mark const immutable buffers passed to that function. Signed-off-by: Denis Benato <benato.denis96@gmail.com> Signed-off-by: Luke D. Jones <luke@ljones.dev> Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2b9e16bc1c
commit
a684235d30
1 changed files with 4 additions and 4 deletions
|
|
@ -380,7 +380,7 @@ static int asus_raw_event(struct hid_device *hdev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int asus_kbd_set_report(struct hid_device *hdev, u8 *buf, size_t buf_size)
|
static int asus_kbd_set_report(struct hid_device *hdev, const u8 *buf, size_t buf_size)
|
||||||
{
|
{
|
||||||
unsigned char *dmabuf;
|
unsigned char *dmabuf;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
@ -403,7 +403,7 @@ static int asus_kbd_set_report(struct hid_device *hdev, u8 *buf, size_t buf_size
|
||||||
|
|
||||||
static int asus_kbd_init(struct hid_device *hdev)
|
static int asus_kbd_init(struct hid_device *hdev)
|
||||||
{
|
{
|
||||||
u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x41, 0x53, 0x55, 0x53, 0x20, 0x54,
|
const u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x41, 0x53, 0x55, 0x53, 0x20, 0x54,
|
||||||
0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 };
|
0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 };
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
@ -417,7 +417,7 @@ static int asus_kbd_init(struct hid_device *hdev)
|
||||||
static int asus_kbd_get_functions(struct hid_device *hdev,
|
static int asus_kbd_get_functions(struct hid_device *hdev,
|
||||||
unsigned char *kbd_func)
|
unsigned char *kbd_func)
|
||||||
{
|
{
|
||||||
u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x05, 0x20, 0x31, 0x00, 0x08 };
|
const u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x05, 0x20, 0x31, 0x00, 0x08 };
|
||||||
u8 *readbuf;
|
u8 *readbuf;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
|
@ -448,7 +448,7 @@ static int asus_kbd_get_functions(struct hid_device *hdev,
|
||||||
|
|
||||||
static int rog_nkey_led_init(struct hid_device *hdev)
|
static int rog_nkey_led_init(struct hid_device *hdev)
|
||||||
{
|
{
|
||||||
u8 buf_init_start[] = { FEATURE_KBD_LED_REPORT_ID1, 0xB9 };
|
const u8 buf_init_start[] = { FEATURE_KBD_LED_REPORT_ID1, 0xB9 };
|
||||||
u8 buf_init2[] = { FEATURE_KBD_LED_REPORT_ID1, 0x41, 0x53, 0x55, 0x53, 0x20,
|
u8 buf_init2[] = { FEATURE_KBD_LED_REPORT_ID1, 0x41, 0x53, 0x55, 0x53, 0x20,
|
||||||
0x54, 0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 };
|
0x54, 0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 };
|
||||||
u8 buf_init3[] = { FEATURE_KBD_LED_REPORT_ID1,
|
u8 buf_init3[] = { FEATURE_KBD_LED_REPORT_ID1,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue