]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
isdn: hisax: constify pci_device_id.
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Sat, 15 Jul 2017 04:25:42 +0000 (09:55 +0530)
committerDavid S. Miller <davem@davemloft.net>
Sun, 16 Jul 2017 04:25:56 +0000 (21:25 -0700)
commitcd7b03e9cc94f249ae3b54cf5a41d4b9fb297e0b
treeb9895f61ce6aa441b4329f91987c69274fffd709
parent32984565574da7ed3afa10647bb4020d7a9e6c93
isdn: hisax: 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
  13686    2064    4416   20166    4ec6 drivers/isdn/hisax/config.o

File size After adding 'const':
   text    data     bss     dec     hex filename
  15030     720    4416   20166    4ec6 drivers/isdn/hisax/config.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/isdn/hisax/config.c