Skip to content

Commit

Permalink
drm/tilcdc: tilcdc_panel: make of_device_ids const.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Arvind Yadav authored and Jyri Sarha committed Oct 5, 2017
1 parent ebec44a commit 2117355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/tilcdc/tilcdc_panel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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", },
{ },
};
Expand Down

0 comments on commit 2117355

Please sign in to comment.