projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
617011e
)
net: netcp: constify of_device_id array
author
Fabian Frederick
<fabf@skynet.be>
Tue, 17 Mar 2015 18:37:32 +0000
(19:37 +0100)
committer
David S. Miller
<davem@davemloft.net>
Tue, 17 Mar 2015 19:00:21 +0000
(15:00 -0400)
of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/netcp_core.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/ti/netcp_core.c
b/drivers/net/ethernet/ti/netcp_core.c
index 9f14d8b515c74360355c9850adc4ecad5e044795..1c4dd8081a57b9c578a7f8892945e9fb3fde3b10 100644
(file)
--- a/
drivers/net/ethernet/ti/netcp_core.c
+++ b/
drivers/net/ethernet/ti/netcp_core.c
@@
-2127,7
+2127,7
@@
static int netcp_remove(struct platform_device *pdev)
return 0;
}
-static struct of_device_id of_match[] = {
+static
const
struct of_device_id of_match[] = {
{ .compatible = "ti,netcp-1.0", },
{},
};