diff options
| author | Amitkumar Karwar <[email protected]> | 2015-05-26 06:34:29 -0700 |
|---|---|---|
| committer | Kalle Valo <[email protected]> | 2015-06-02 23:15:57 +0300 |
| commit | 38b130e22e40fd81c979952172d9a4be2e0edff9 (patch) | |
| tree | 25faa275ad6b73427235487d417e15ffeccb6103 | |
| parent | 0769b27739ee420a391ee66a431c1474370aec6b (diff) | |
mwifiex: dump driver information for PCIe interface
Currently we are dumping driver information only for SDIO
interface. This patch adds missing mwifiex_dump_drv_info()
call for PCIe interface.
Signed-off-by: Amitkumar Karwar <[email protected]>
Signed-off-by: Cathy Luo <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
| -rw-r--r-- | drivers/net/wireless/mwifiex/pcie.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/pcie.c b/drivers/net/wireless/mwifiex/pcie.c index 7219243e9994..86ed396c88ea 100644 --- a/drivers/net/wireless/mwifiex/pcie.c +++ b/drivers/net/wireless/mwifiex/pcie.c @@ -2316,6 +2316,8 @@ static void mwifiex_pcie_fw_dump_work(struct mwifiex_adapter *adapter) int ret; static char *env[] = { "DRIVER=mwifiex_pcie", "EVENT=fw_dump", NULL }; + mwifiex_dump_drv_info(adapter); + if (!card->pcie.can_dump_fw) return; |