diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-17 21:40:23 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-17 22:00:23 +0300 |
commit | d8a7dadbdfde042c07599e8ac90c7718aef76da7 (patch) | |
tree | 975035c0d7ee527f02a53c0d5139bfa6dfb5f4f7 /drivers/net/phy/mdio-gpio.c | |
parent | 3848124b3e81055e176377345beb37ee07944d91 (diff) | |
download | linux-d8a7dadbdfde042c07599e8ac90c7718aef76da7.tar.xz |
net: phy: 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/phy/mdio-gpio.c')
-rw-r--r-- | drivers/net/phy/mdio-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c index 0a0578a592b8..49ce7ece5af3 100644 --- a/drivers/net/phy/mdio-gpio.c +++ b/drivers/net/phy/mdio-gpio.c @@ -249,7 +249,7 @@ static int mdio_gpio_remove(struct platform_device *pdev) return 0; } -static struct of_device_id mdio_gpio_of_match[] = { +static const struct of_device_id mdio_gpio_of_match[] = { { .compatible = "virtual,mdio-gpio", }, { /* sentinel */ } }; |