video: fbdev: savage: 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. File size before: text data bss dec hex filename 19916 1240 8 21164 52ac fbdev/savage/savagefb_driver.o File size after adding 'const': text data bss dec hex filename 20684 472 8 21164 52ac fbdev/savage/savagefb_driver.o Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Antonino Daplas <adaplas@gmail.com> Cc: Maik Broemme <mbroemme@libmpq.org> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
6e8e55a906
commit
4d7247d121
|
@ -2429,7 +2429,7 @@ static int savagefb_resume(struct pci_dev* dev)
|
|||
}
|
||||
|
||||
|
||||
static struct pci_device_id savagefb_devices[] = {
|
||||
static const struct pci_device_id savagefb_devices[] = {
|
||||
{PCI_VENDOR_ID_S3, PCI_CHIP_SUPSAV_MX128,
|
||||
PCI_ANY_ID, PCI_ANY_ID, 0, 0, FB_ACCEL_SUPERSAVAGE},
|
||||
|
||||
|
|
Loading…
Reference in New Issue