diff options
author | Thomas Weißschuh <linux@weissschuh.net> | 2023-01-30 04:59:41 +0100 |
---|---|---|
committer | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2023-02-06 15:08:44 +0100 |
commit | 3352c3e0bf9b7eb53392ef7e75a1cdc437e73557 (patch) | |
tree | 22e8dcc5ae1ec136e9d08ede1cf098dbfc0a4016 /drivers/hid/intel-ish-hid/ishtp-hid.c | |
parent | HID: steam: Constify lowlevel HID driver (diff) | |
download | linux-3352c3e0bf9b7eb53392ef7e75a1cdc437e73557.tar.xz linux-3352c3e0bf9b7eb53392ef7e75a1cdc437e73557.zip |
HID: intel-ish-hid: Constify lowlevel HID driver
Since commit 52d225346904 ("HID: Make lowlevel driver structs const")
the lowlevel HID drivers are only exposed as const.
Take advantage of this to constify the underlying structure, too.
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230130-hid-const-ll-driver-v1-5-3fc282b3b1d0@weissschuh.net
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Diffstat (limited to 'drivers/hid/intel-ish-hid/ishtp-hid.c')
-rw-r--r-- | drivers/hid/intel-ish-hid/ishtp-hid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/intel-ish-hid/ishtp-hid.c b/drivers/hid/intel-ish-hid/ishtp-hid.c index 14c271d7d8a9..00c6f0ebf356 100644 --- a/drivers/hid/intel-ish-hid/ishtp-hid.c +++ b/drivers/hid/intel-ish-hid/ishtp-hid.c @@ -183,7 +183,7 @@ void ishtp_hid_wakeup(struct hid_device *hid) wake_up_interruptible(&hid_data->hid_wait); } -static struct hid_ll_driver ishtp_hid_ll_driver = { +static const struct hid_ll_driver ishtp_hid_ll_driver = { .parse = ishtp_hid_parse, .start = ishtp_hid_start, .stop = ishtp_hid_stop, |