diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-01 13:56:28 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-08-09 09:46:30 -0400 |
commit | 78899349b138b608269db78303bce0b2e06ab84d (patch) | |
tree | 245e54a228c3af5610498ef3996c7f9218958fa7 /drivers/media/pci/b2c2 | |
parent | aaf4882d3dbebe842e394111eeb6f61e28101385 (diff) |
media: b2c2: constify pci_device_id
pci_device_id are not supposed to change at runtime. All functions
working with pci_device_id provided by <linux/pci.h> work with
const pci_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/pci/b2c2')
-rw-r--r-- | drivers/media/pci/b2c2/flexcop-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/b2c2/flexcop-pci.c b/drivers/media/pci/b2c2/flexcop-pci.c index 6e60decb2198..cc6527e35537 100644 --- a/drivers/media/pci/b2c2/flexcop-pci.c +++ b/drivers/media/pci/b2c2/flexcop-pci.c | |||
@@ -415,7 +415,7 @@ static void flexcop_pci_remove(struct pci_dev *pdev) | |||
415 | flexcop_device_kfree(fc_pci->fc_dev); | 415 | flexcop_device_kfree(fc_pci->fc_dev); |
416 | } | 416 | } |
417 | 417 | ||
418 | static struct pci_device_id flexcop_pci_tbl[] = { | 418 | static const struct pci_device_id flexcop_pci_tbl[] = { |
419 | { PCI_DEVICE(0x13d0, 0x2103) }, | 419 | { PCI_DEVICE(0x13d0, 0x2103) }, |
420 | { }, | 420 | { }, |
421 | }; | 421 | }; |