diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-01 21:31:54 +0530 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-08-04 16:59:48 +1000 |
commit | f2149f0af38d8a558a1f83869d9bc13717f739cd (patch) | |
tree | 29697a6605bc3a2e41c95280365858d531e2ceaf /drivers/char/agp/sis-agp.c | |
parent | 0fa02c658aa7f0ee45c0711aa17a57e27bc3a601 (diff) |
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/agp/sis-agp.c')
-rw-r--r-- | drivers/char/agp/sis-agp.c | 2 |
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, |