diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-17 19:40:22 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-17 15:00:22 -0400 |
commit | 3848124b3e81055e176377345beb37ee07944d91 (patch) | |
tree | 369a49f9118df75683f6c360a5ca64396130b385 /drivers/net/wireless/orinoco | |
parent | 74847f231c8a429c8c5d382ac2dbb46766561ee0 (diff) | |
download | blackbird-op-linux-3848124b3e81055e176377345beb37ee07944d91.tar.gz blackbird-op-linux-3848124b3e81055e176377345beb37ee07944d91.zip |
orinoco: 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/wireless/orinoco')
-rw-r--r-- | drivers/net/wireless/orinoco/airport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco/airport.c b/drivers/net/wireless/orinoco/airport.c index 0ca8b1455cd9..77e6c53040a3 100644 --- a/drivers/net/wireless/orinoco/airport.c +++ b/drivers/net/wireless/orinoco/airport.c @@ -228,7 +228,7 @@ MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>"); MODULE_DESCRIPTION("Driver for the Apple Airport wireless card."); MODULE_LICENSE("Dual MPL/GPL"); -static struct of_device_id airport_match[] = { +static const struct of_device_id airport_match[] = { { .name = "radio", }, |