projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4103d84
)
iwlwifi: mvm: print the flags in ALIVE notification
author
Emmanuel Grumbach
<
[email protected]
>
Wed, 13 Mar 2013 15:02:41 +0000
(17:02 +0200)
committer
Johannes Berg
<
[email protected]
>
Wed, 20 Mar 2013 13:17:09 +0000
(14:17 +0100)
This has valuable data about RFkill state seen from the fw
side.
Signed-off-by: Emmanuel Grumbach <
[email protected]
>
Signed-off-by: Johannes Berg <
[email protected]
>
drivers/net/wireless/iwlwifi/mvm/fw.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/iwlwifi/mvm/fw.c
b/drivers/net/wireless/iwlwifi/mvm/fw.c
index d43e2a57d35484cea76cba690f1a96255daeeaa9..b497647bf34bfee636b5cc9e0ad1e76212108dc8 100644
(file)
--- a/
drivers/net/wireless/iwlwifi/mvm/fw.c
+++ b/
drivers/net/wireless/iwlwifi/mvm/fw.c
@@
-134,9
+134,10
@@
static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
alive_data->scd_base_addr = le32_to_cpu(palive->scd_base_ptr);
alive_data->valid = le16_to_cpu(palive->status) == IWL_ALIVE_STATUS_OK;
- IWL_DEBUG_FW(mvm, "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n",
+ IWL_DEBUG_FW(mvm,
+ "Alive ucode status 0x%04x revision 0x%01X 0x%01X flags 0x%01X\n",
le16_to_cpu(palive->status), palive->ver_type,
- palive->ver_subtype);
+ palive->ver_subtype
, palive->flags
);
return true;
}