Commit 45d5d805 authored by Emese Revfy's avatar Emese Revfy Committed by John W. Linville

iwlwifi: Constify struct iwl_ops

Signed-off-by: default avatarEmese Revfy <re.emese@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ba37a3d0
...@@ -141,7 +141,7 @@ static struct iwl_lib_ops iwl1000_lib = { ...@@ -141,7 +141,7 @@ static struct iwl_lib_ops iwl1000_lib = {
}, },
}; };
static struct iwl_ops iwl1000_ops = { static const struct iwl_ops iwl1000_ops = {
.ucode = &iwl5000_ucode, .ucode = &iwl5000_ucode,
.lib = &iwl1000_lib, .lib = &iwl1000_lib,
.hcmd = &iwl5000_hcmd, .hcmd = &iwl5000_hcmd,
......
...@@ -2811,7 +2811,7 @@ static struct iwl_hcmd_utils_ops iwl3945_hcmd_utils = { ...@@ -2811,7 +2811,7 @@ static struct iwl_hcmd_utils_ops iwl3945_hcmd_utils = {
.rts_tx_cmd_flag = iwlcore_rts_tx_cmd_flag, .rts_tx_cmd_flag = iwlcore_rts_tx_cmd_flag,
}; };
static struct iwl_ops iwl3945_ops = { static const struct iwl_ops iwl3945_ops = {
.ucode = &iwl3945_ucode, .ucode = &iwl3945_ucode,
.lib = &iwl3945_lib, .lib = &iwl3945_lib,
.hcmd = &iwl3945_hcmd, .hcmd = &iwl3945_hcmd,
......
...@@ -2208,7 +2208,7 @@ static struct iwl_lib_ops iwl4965_lib = { ...@@ -2208,7 +2208,7 @@ static struct iwl_lib_ops iwl4965_lib = {
}, },
}; };
static struct iwl_ops iwl4965_ops = { static const struct iwl_ops iwl4965_ops = {
.ucode = &iwl4965_ucode, .ucode = &iwl4965_ucode,
.lib = &iwl4965_lib, .lib = &iwl4965_lib,
.hcmd = &iwl4965_hcmd, .hcmd = &iwl4965_hcmd,
......
...@@ -1556,7 +1556,7 @@ static struct iwl_lib_ops iwl5150_lib = { ...@@ -1556,7 +1556,7 @@ static struct iwl_lib_ops iwl5150_lib = {
}, },
}; };
static struct iwl_ops iwl5000_ops = { static const struct iwl_ops iwl5000_ops = {
.ucode = &iwl5000_ucode, .ucode = &iwl5000_ucode,
.lib = &iwl5000_lib, .lib = &iwl5000_lib,
.hcmd = &iwl5000_hcmd, .hcmd = &iwl5000_hcmd,
...@@ -1564,7 +1564,7 @@ static struct iwl_ops iwl5000_ops = { ...@@ -1564,7 +1564,7 @@ static struct iwl_ops iwl5000_ops = {
.led = &iwlagn_led_ops, .led = &iwlagn_led_ops,
}; };
static struct iwl_ops iwl5150_ops = { static const struct iwl_ops iwl5150_ops = {
.ucode = &iwl5000_ucode, .ucode = &iwl5000_ucode,
.lib = &iwl5150_lib, .lib = &iwl5150_lib,
.hcmd = &iwl5000_hcmd, .hcmd = &iwl5000_hcmd,
......
...@@ -253,7 +253,7 @@ static struct iwl_lib_ops iwl6000_lib = { ...@@ -253,7 +253,7 @@ static struct iwl_lib_ops iwl6000_lib = {
}, },
}; };
static struct iwl_ops iwl6000_ops = { static const struct iwl_ops iwl6000_ops = {
.ucode = &iwl5000_ucode, .ucode = &iwl5000_ucode,
.lib = &iwl6000_lib, .lib = &iwl6000_lib,
.hcmd = &iwl5000_hcmd, .hcmd = &iwl5000_hcmd,
...@@ -268,7 +268,7 @@ static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = { ...@@ -268,7 +268,7 @@ static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = {
.calc_rssi = iwl5000_calc_rssi, .calc_rssi = iwl5000_calc_rssi,
}; };
static struct iwl_ops iwl6050_ops = { static const struct iwl_ops iwl6050_ops = {
.ucode = &iwl5000_ucode, .ucode = &iwl5000_ucode,
.lib = &iwl6000_lib, .lib = &iwl6000_lib,
.hcmd = &iwl5000_hcmd, .hcmd = &iwl5000_hcmd,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment