diff options
-rw-r--r-- | drivers/net/wireless/ath/ath10k/ce.c | 8 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath10k/pci.c | 6 |
2 files changed, 12 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/ce.c b/drivers/net/wireless/ath/ath10k/ce.c index 924b29ec7a74..4f8373c5a86c 100644 --- a/drivers/net/wireless/ath/ath10k/ce.c +++ b/drivers/net/wireless/ath/ath10k/ce.c | |||
@@ -973,6 +973,10 @@ static int ath10k_ce_init_src_ring(struct ath10k *ar, | |||
973 | ath10k_ce_src_ring_lowmark_set(ar, ctrl_addr, 0); | 973 | ath10k_ce_src_ring_lowmark_set(ar, ctrl_addr, 0); |
974 | ath10k_ce_src_ring_highmark_set(ar, ctrl_addr, nentries); | 974 | ath10k_ce_src_ring_highmark_set(ar, ctrl_addr, nentries); |
975 | 975 | ||
976 | ath10k_dbg(ATH10K_DBG_BOOT, | ||
977 | "boot ce src ring id %d entries %d base_addr %p\n", | ||
978 | ce_id, nentries, src_ring->base_addr_owner_space); | ||
979 | |||
976 | return 0; | 980 | return 0; |
977 | } | 981 | } |
978 | 982 | ||
@@ -1054,6 +1058,10 @@ static int ath10k_ce_init_dest_ring(struct ath10k *ar, | |||
1054 | ath10k_ce_dest_ring_lowmark_set(ar, ctrl_addr, 0); | 1058 | ath10k_ce_dest_ring_lowmark_set(ar, ctrl_addr, 0); |
1055 | ath10k_ce_dest_ring_highmark_set(ar, ctrl_addr, nentries); | 1059 | ath10k_ce_dest_ring_highmark_set(ar, ctrl_addr, nentries); |
1056 | 1060 | ||
1061 | ath10k_dbg(ATH10K_DBG_BOOT, | ||
1062 | "boot ce dest ring id %d entries %d base_addr %p\n", | ||
1063 | ce_id, nentries, dest_ring->base_addr_owner_space); | ||
1064 | |||
1057 | return 0; | 1065 | return 0; |
1058 | } | 1066 | } |
1059 | 1067 | ||
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 0ad65a0f94ca..899a8c0c189c 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c | |||
@@ -2367,10 +2367,10 @@ static void ath10k_pci_dump_features(struct ath10k_pci *ar_pci) | |||
2367 | 2367 | ||
2368 | switch (i) { | 2368 | switch (i) { |
2369 | case ATH10K_PCI_FEATURE_MSI_X: | 2369 | case ATH10K_PCI_FEATURE_MSI_X: |
2370 | ath10k_dbg(ATH10K_DBG_PCI, "device supports MSI-X\n"); | 2370 | ath10k_dbg(ATH10K_DBG_BOOT, "device supports MSI-X\n"); |
2371 | break; | 2371 | break; |
2372 | case ATH10K_PCI_FEATURE_SOC_POWER_SAVE: | 2372 | case ATH10K_PCI_FEATURE_SOC_POWER_SAVE: |
2373 | ath10k_dbg(ATH10K_DBG_PCI, "QCA98XX SoC power save enabled\n"); | 2373 | ath10k_dbg(ATH10K_DBG_BOOT, "QCA98XX SoC power save enabled\n"); |
2374 | break; | 2374 | break; |
2375 | } | 2375 | } |
2376 | } | 2376 | } |
@@ -2496,6 +2496,8 @@ static int ath10k_pci_probe(struct pci_dev *pdev, | |||
2496 | 2496 | ||
2497 | ath10k_do_pci_sleep(ar); | 2497 | ath10k_do_pci_sleep(ar); |
2498 | 2498 | ||
2499 | ath10k_dbg(ATH10K_DBG_BOOT, "boot pci_mem 0x%p\n", ar_pci->mem); | ||
2500 | |||
2499 | ret = ath10k_core_register(ar, chip_id); | 2501 | ret = ath10k_core_register(ar, chip_id); |
2500 | if (ret) { | 2502 | if (ret) { |
2501 | ath10k_err("could not register driver core (%d)\n", ret); | 2503 | ath10k_err("could not register driver core (%d)\n", ret); |