aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-03-17 19:37:32 +0100
committerDavid S. Miller <davem@davemloft.net>2015-03-17 15:00:21 -0400
commit1156c96538e63f7e4fe9471674c74fc3f496681d (patch)
tree5b7d8fd8788afe5e1de992ccece42c4a756464ad /drivers
parentrhashtable: Avoid calculating hash again to unlock (diff)
downloadlinux-dev-1156c96538e63f7e4fe9471674c74fc3f496681d.tar.xz
linux-dev-1156c96538e63f7e4fe9471674c74fc3f496681d.zip
net: netcp: constify of_device_id array
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/ethernet/ti/netcp_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/netcp_core.c b/drivers/net/ethernet/ti/netcp_core.c
index 9f14d8b515c7..1c4dd8081a57 100644
--- 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", },
{},
};