提交 cafdee68 编写于 作者: A Arvind Yadav 提交者: Jyri Sarha

drm/tilcdc: tilcdc_tfp410: 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
   1496	    592	      0	   2088	    828	drivers/gpu/drm/tilcdc/tilcdc_tfp410.o

File size after constify:
   text	   data	    bss	    dec	    hex	filename
   1880	    176	      0	   2056	    808	drivers/gpu/drm/tilcdc/tilcdc_tfp410.o
Signed-off-by: NArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: NJyri Sarha <jsarha@ti.com>
上级 21173552
...@@ -289,8 +289,6 @@ static const struct tilcdc_module_ops tfp410_module_ops = { ...@@ -289,8 +289,6 @@ static const struct tilcdc_module_ops tfp410_module_ops = {
* Device: * Device:
*/ */
static struct of_device_id tfp410_of_match[];
static int tfp410_probe(struct platform_device *pdev) static int tfp410_probe(struct platform_device *pdev)
{ {
struct device_node *node = pdev->dev.of_node; struct device_node *node = pdev->dev.of_node;
...@@ -375,7 +373,7 @@ static int tfp410_remove(struct platform_device *pdev) ...@@ -375,7 +373,7 @@ static int tfp410_remove(struct platform_device *pdev)
return 0; return 0;
} }
static struct of_device_id tfp410_of_match[] = { static const struct of_device_id tfp410_of_match[] = {
{ .compatible = "ti,tilcdc,tfp410", }, { .compatible = "ti,tilcdc,tfp410", },
{ }, { },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册