aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/orinoco/airport.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-03-17 19:40:22 +0100
committerDavid S. Miller <davem@davemloft.net>2015-03-17 15:00:22 -0400
commit3848124b3e81055e176377345beb37ee07944d91 (patch)
tree369a49f9118df75683f6c360a5ca64396130b385 /drivers/net/wireless/orinoco/airport.c
parentnet: xilinx: constify of_device_id array (diff)
downloadlinux-dev-3848124b3e81055e176377345beb37ee07944d91.tar.xz
linux-dev-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 '')
-rw-r--r--drivers/net/wireless/orinoco/airport.c2
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",
},