Commit c3039b10 authored by Luca Coelho's avatar Luca Coelho

iwlwifi: make bitfield a u32 instead of u16

The bitfield we use in struct iwl_cfg contains 17 bits, but we declare
it as u16.  The compiler doesn't seem to have any problems with that
(it probably automatically makes it u32), but it's cleaner to use a
type that is long enough for all the flags.
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent 49564a80
...@@ -420,7 +420,7 @@ struct iwl_cfg { ...@@ -420,7 +420,7 @@ struct iwl_cfg {
u32 soc_latency; u32 soc_latency;
u16 nvm_ver; u16 nvm_ver;
u16 nvm_calib_ver; u16 nvm_calib_ver;
u16 rx_with_siso_diversity:1, u32 rx_with_siso_diversity:1,
bt_shared_single_ant:1, bt_shared_single_ant:1,
internal_wimax_coex:1, internal_wimax_coex:1,
host_interrupt_operation_mode:1, host_interrupt_operation_mode:1,
......
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