]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/tilcdc: tilcdc_panel: make of_device_ids const.
authorArvind Yadav <arvind.yadav.cs@gmail.com>
Wed, 28 Jun 2017 05:38:43 +0000 (11:08 +0530)
committerJyri Sarha <jsarha@ti.com>
Thu, 5 Oct 2017 08:47:10 +0000 (11:47 +0300)
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
   1531     592       0    2123     84b drivers/gpu/drm/tilcdc/tilcdc_panel.o

File size after constify:
   text    data     bss     dec     hex filename
   1915     176       0    2091     82b drivers/gpu/drm/tilcdc/tilcdc_panel.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Jyri Sarha <jsarha@ti.com>
drivers/gpu/drm/tilcdc/tilcdc_panel.c

index 1813a3623ce6012829eb8238a7c9158bebd03b9f..8eebb5f826a6285f1298c873e6285eabbee331f4 100644 (file)
@@ -418,7 +418,7 @@ static int panel_remove(struct platform_device *pdev)
        return 0;
 }
 
-static struct of_device_id panel_of_match[] = {
+static const struct of_device_id panel_of_match[] = {
                { .compatible = "ti,tilcdc,panel", },
                { },
 };