]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
net: ibm: ibmveth: constify dev_pm_ops structures.
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Thu, 29 Jun 2017 05:44:50 +0000 (11:14 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Jun 2017 19:48:49 +0000 (15:48 -0400)
commiteb60a73d00a7e1f069cd45d7b06ee46bc6b7dfb1
tree7cca9e59cf34e7a054614da901b62c2911a8cab8
parent5df969c3b0c6df03d72e0e7502c4adc7838442f9
net: ibm: ibmveth: constify dev_pm_ops structures.

dev_pm_ops are not supposed to change at runtime. All functions
working with dev_pm_ops provided by <linux/device.h> work with const
dev_pm_ops. So mark the non-const structs as const.

File size before:
   text    data     bss     dec     hex filename
  15426    1256       0   16682    412a drivers/net/ethernet/ibm/ibmveth.o

File size After adding 'const':
   text    data     bss     dec     hex filename
  15618    1064       0   16682    412a drivers/net/ethernet/ibm/ibmveth.o

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