aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-08-01 21:31:54 +0530
committerDave Airlie <airlied@redhat.com>2017-08-04 16:59:48 +1000
commitf2149f0af38d8a558a1f83869d9bc13717f739cd (patch)
tree29697a6605bc3a2e41c95280365858d531e2ceaf /drivers/char
parentagp: efficeon: constify pci_device_id. (diff)
downloadlinux-dev-f2149f0af38d8a558a1f83869d9bc13717f739cd.tar.xz
linux-dev-f2149f0af38d8a558a1f83869d9bc13717f739cd.zip
agp: sis: 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: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/agp/sis-agp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/agp/sis-agp.c b/drivers/char/agp/sis-agp.c
index 2c74038da459..14909fc5d767 100644
--- a/drivers/char/agp/sis-agp.c
+++ b/drivers/char/agp/sis-agp.c
@@ -237,7 +237,7 @@ static int agp_sis_resume(struct pci_dev *pdev)
#endif /* CONFIG_PM */
-static struct pci_device_id agp_sis_pci_table[] = {
+static const struct pci_device_id agp_sis_pci_table[] = {
{
.class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0,