diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-17 21:37:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-17 22:00:22 +0300 |
commit | 73c7047464f26c00389b142cb1c35a695ff59777 (patch) | |
tree | 160a7735a5900d88d7336c456feff30b5755bb78 /drivers/net/ethernet/aeroflex/greth.c | |
parent | 437dab40bbfadb72e930adc10da62e5f66129769 (diff) | |
download | linux-73c7047464f26c00389b142cb1c35a695ff59777.tar.xz |
net: greth: 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/net/ethernet/aeroflex/greth.c')
-rw-r--r-- | drivers/net/ethernet/aeroflex/greth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/aeroflex/greth.c b/drivers/net/ethernet/aeroflex/greth.c index 2b8bfeeee9cf..ae89de7deb13 100644 --- a/drivers/net/ethernet/aeroflex/greth.c +++ b/drivers/net/ethernet/aeroflex/greth.c @@ -1588,7 +1588,7 @@ static int greth_of_remove(struct platform_device *of_dev) return 0; } -static struct of_device_id greth_of_match[] = { +static const struct of_device_id greth_of_match[] = { { .name = "GAISLER_ETHMAC", }, |