From: Arvind Yadav Date: Mon, 19 Jun 2017 06:14:41 +0000 (+0530) Subject: virtio: virtio_mmio: make of_device_ids const. X-Git-Tag: v4.16-rc1~35^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31919140ff8c88c236f697baa28a6305df45e4ea;p=thirdparty%2Flinux.git 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 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 Signed-off-by: Michael S. Tsirkin --- diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c index b43ac9b8ae489..67763d3c7abfa 100644 --- a/drivers/virtio/virtio_mmio.c +++ b/drivers/virtio/virtio_mmio.c @@ -723,7 +723,7 @@ static void vm_unregister_cmdline_devices(void) /* Platform driver */ -static struct of_device_id virtio_mmio_match[] = { +static const struct of_device_id virtio_mmio_match[] = { { .compatible = "virtio,mmio", }, {}, };