From: Dave Jones Date: Fri, 11 Aug 2006 22:13:41 +0000 (-0400) Subject: [AGPGART] const'ify VIA AGP PCI table. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b53e674a707cf77e76339852abdc063696679261;p=linux-beck.git [AGPGART] const'ify VIA AGP PCI table. Signed-off-by: Dave Jones --- diff --git a/drivers/char/agp/via-agp.c b/drivers/char/agp/via-agp.c index b8ec25d17478..c149ac9ce9a7 100644 --- a/drivers/char/agp/via-agp.c +++ b/drivers/char/agp/via-agp.c @@ -9,7 +9,7 @@ #include #include "agp.h" -static struct pci_device_id agp_via_pci_table[]; +static const struct pci_device_id agp_via_pci_table[]; #define VIA_GARTCTRL 0x80 #define VIA_APSIZE 0x84 @@ -485,7 +485,7 @@ static int agp_via_resume(struct pci_dev *pdev) #endif /* CONFIG_PM */ /* must be the same order as name table above */ -static struct pci_device_id agp_via_pci_table[] = { +static const struct pci_device_id agp_via_pci_table[] = { #define ID(x) \ { \ .class = (PCI_CLASS_BRIDGE_HOST << 8), \