mirror of
https://github.com/optim-enterprises-bv/openwrt-ipq.git
synced 2025-11-02 03:08:31 +00:00
ath10k-ct: fix incompatible pointer type
Signed-off-by: Sean Khan <datapronix@protonmail.com>
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif start\n");
|
||||
|
||||
+ dev_set_threaded(&ar->napi_dev, true);
|
||||
+ dev_set_threaded(ar->napi_dev, true);
|
||||
ath10k_core_napi_enable(ar);
|
||||
|
||||
ath10k_pci_irq_enable(ar);
|
||||
@@ -24,9 +24,9 @@
|
||||
if (!ar->napi_dev)
|
||||
goto err_free_tx_complete;
|
||||
|
||||
+ snprintf(ar->napi_dev.name, sizeof(ar->napi_dev.name), "ath10k_%s",
|
||||
+ snprintf(ar->napi_dev->name, sizeof(ar->napi_dev->name), "ath10k_%s",
|
||||
+ wiphy_name(ar->hw->wiphy));
|
||||
+ dev_set_threaded(&ar->napi_dev, true);
|
||||
+ dev_set_threaded(ar->napi_dev, true);
|
||||
+
|
||||
ret = ath10k_coredump_create(ar);
|
||||
if (ret)
|
||||
|
||||
Reference in New Issue
Block a user