Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

isdn: hisax: hisax_fcpcipnp: 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
5989 576 0 6565 19a5 isdn/hisax/hisax_fcpcipnp.o

File size After adding 'const':
text data bss dec hex filename
6085 480 0 6565 19a5 isdn/hisax/hisax_fcpcipnp.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Arvind Yadav and committed by
David S. Miller
6cfc3d86 3651003d

+1 -1
+1 -1
drivers/isdn/hisax/hisax_fcpcipnp.c
··· 52 52 MODULE_AUTHOR("Kai Germaschewski <kai.germaschewski@gmx.de>/Karsten Keil <kkeil@suse.de>"); 53 53 MODULE_DESCRIPTION("AVM Fritz!PCI/PnP ISDN driver"); 54 54 55 - static struct pci_device_id fcpci_ids[] = { 55 + static const struct pci_device_id fcpci_ids[] = { 56 56 { .vendor = PCI_VENDOR_ID_AVM, 57 57 .device = PCI_DEVICE_ID_AVM_A1, 58 58 .subvendor = PCI_ANY_ID,