summaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/pulse8-cec
diff options
context:
space:
mode:
authorArvind Yadav2017-08-17 13:56:23 +0200
committerMauro Carvalho Chehab2017-08-20 14:27:13 +0200
commit21b36756fc738251847d7ef19aa31fcb4e44c018 (patch)
tree6793f9ecc559b1779f08c24602e7bd98bb56414a /drivers/media/usb/pulse8-cec
parentmedia: coda/imx-vdoa: Check for platform_get_resource() error (diff)
downloadkernel-qcow2-linux-21b36756fc738251847d7ef19aa31fcb4e44c018.tar.gz
kernel-qcow2-linux-21b36756fc738251847d7ef19aa31fcb4e44c018.tar.xz
kernel-qcow2-linux-21b36756fc738251847d7ef19aa31fcb4e44c018.zip
media: usb: pulse8-cec: constify serio_device_id
serio_device_id are not supposed to change at runtime. All functions working with serio_device_id provided by <linux/serio.h> work with const serio_device_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/pulse8-cec')
-rw-r--r--drivers/media/usb/pulse8-cec/pulse8-cec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/pulse8-cec/pulse8-cec.c b/drivers/media/usb/pulse8-cec/pulse8-cec.c
index 95f616f94004..50146f263d90 100644
--- a/drivers/media/usb/pulse8-cec/pulse8-cec.c
+++ b/drivers/media/usb/pulse8-cec/pulse8-cec.c
@@ -731,7 +731,7 @@ static void pulse8_ping_eeprom_work_handler(struct work_struct *work)
mutex_unlock(&pulse8->config_lock);
}
-static struct serio_device_id pulse8_serio_ids[] = {
+static const struct serio_device_id pulse8_serio_ids[] = {
{
.type = SERIO_RS232,
.proto = SERIO_PULSE8_CEC,