hwmon: (i5k_amb) constify pci_device_id
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Mon, 17 Jul 2017 16:25:10 +0000 (21:55 +0530)
committerGuenter Roeck <linux@roeck-us.net>
Sun, 13 Aug 2017 15:24:38 +0000 (08:24 -0700)
commit4d3f24142c62ff9cee01c3ef532b9a658d184304
tree5e6c1da007abc68d6fd76a4a6e2315f3c582a33f
parentbb923fdc374420116b8425a49b9bfb38caa35e7f
hwmon: (i5k_amb) 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
   3562     320       8    3890     f32 drivers/hwmon/i5k_amb.o

File size After adding 'const':
   text    data     bss     dec     hex filename
   3658     224       8    3890     f32 drivers/hwmon/i5k_amb.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/i5k_amb.c