net: netcp: constify of_device_id array
authorFabian Frederick <fabf@skynet.be>
Tue, 17 Mar 2015 18:37:32 +0000 (19:37 +0100)
committerDavid 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

index 9f14d8b515c74360355c9850adc4ecad5e044795..1c4dd8081a57b9c578a7f8892945e9fb3fde3b10 100644 (file)
@@ -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", },
        {},
 };