diff options
author | Emese Revfy <re.emese@gmail.com> | 2009-12-13 18:59:53 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-12-22 13:56:09 -0500 |
commit | 45d5d805988f1f3c0b24dac59fbba771b1f106a8 (patch) | |
tree | d139a97dc38d3dfed832b962c66bba2e29bbe533 /drivers/net/wireless/iwlwifi/iwl-6000.c | |
parent | ba37a3d0395a66b3c9164c4f4d1318317da32e96 (diff) |
iwlwifi: Constify struct iwl_ops
Signed-off-by: Emese Revfy <re.emese@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-6000.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index 788457ae25a8..a5a0ed4817a4 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
@@ -253,7 +253,7 @@ static struct iwl_lib_ops iwl6000_lib = { | |||
253 | }, | 253 | }, |
254 | }; | 254 | }; |
255 | 255 | ||
256 | static struct iwl_ops iwl6000_ops = { | 256 | static const struct iwl_ops iwl6000_ops = { |
257 | .ucode = &iwl5000_ucode, | 257 | .ucode = &iwl5000_ucode, |
258 | .lib = &iwl6000_lib, | 258 | .lib = &iwl6000_lib, |
259 | .hcmd = &iwl5000_hcmd, | 259 | .hcmd = &iwl5000_hcmd, |
@@ -268,7 +268,7 @@ static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = { | |||
268 | .calc_rssi = iwl5000_calc_rssi, | 268 | .calc_rssi = iwl5000_calc_rssi, |
269 | }; | 269 | }; |
270 | 270 | ||
271 | static struct iwl_ops iwl6050_ops = { | 271 | static const struct iwl_ops iwl6050_ops = { |
272 | .ucode = &iwl5000_ucode, | 272 | .ucode = &iwl5000_ucode, |
273 | .lib = &iwl6000_lib, | 273 | .lib = &iwl6000_lib, |
274 | .hcmd = &iwl5000_hcmd, | 274 | .hcmd = &iwl5000_hcmd, |