]> git.baikalelectronics.ru Git - kernel.git/commit
virtio: virtio_mmio: make of_device_ids const.
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Mon, 19 Jun 2017 06:14:41 +0000 (11:44 +0530)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 30 Jan 2018 23:47:35 +0000 (01:47 +0200)
commit35feb3557cfe2f1b21f6c843b46aa56452b55b5b
tree1679ee03ac10986acc8a7a77ccd066fc53eca716
parent3d157a4da7a1ca2702f29bc8060aea9ea84f5db4
virtio: virtio_mmio: make of_device_ids const.

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

File size before:
   text    data     bss     dec     hex filename
   3647     608       0    4255    109f drivers/virtio/virtio_mmio.o

File size after constify virtio_mmio_match.
   text    data     bss     dec     hex filename
   4063     192       0    4255    109f drivers/virtio/virtio_mmio.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/virtio/virtio_mmio.c