diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-17 21:37:32 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-17 22:00:21 +0300 |
commit | 1156c96538e63f7e4fe9471674c74fc3f496681d (patch) | |
tree | 5b7d8fd8788afe5e1de992ccece42c4a756464ad | |
parent | 617011e7d5559046e4fc8f87793c8a5d9c3431b0 (diff) | |
download | linux-1156c96538e63f7e4fe9471674c74fc3f496681d.tar.xz |
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>
-rw-r--r-- | drivers/net/ethernet/ti/netcp_core.c | 2 |
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", }, {}, }; |