|
@@ -64,7 +64,7 @@ static void _wil6210_disconnect(struct wil6210_priv *wil, void *bssid)
|
|
|
struct net_device *ndev = wil_to_ndev(wil);
|
|
|
struct wireless_dev *wdev = wil->wdev;
|
|
|
|
|
|
- wil_dbg(wil, "%s()\n", __func__);
|
|
|
+ wil_dbg_MISC(wil, "%s()\n", __func__);
|
|
|
|
|
|
wil_link_off(wil);
|
|
|
clear_bit(wil_status_fwconnected, &wil->status);
|
|
@@ -99,7 +99,7 @@ static void wil_connect_timer_fn(ulong x)
|
|
|
{
|
|
|
struct wil6210_priv *wil = (void *)x;
|
|
|
|
|
|
- wil_dbg(wil, "Connect timeout\n");
|
|
|
+ wil_dbg_MISC(wil, "Connect timeout\n");
|
|
|
|
|
|
/* reschedule to thread context - disconnect won't
|
|
|
* run from atomic context
|
|
@@ -109,7 +109,7 @@ static void wil_connect_timer_fn(ulong x)
|
|
|
|
|
|
int wil_priv_init(struct wil6210_priv *wil)
|
|
|
{
|
|
|
- wil_dbg(wil, "%s()\n", __func__);
|
|
|
+ wil_dbg_MISC(wil, "%s()\n", __func__);
|
|
|
|
|
|
mutex_init(&wil->mutex);
|
|
|
mutex_init(&wil->wmi_mutex);
|
|
@@ -162,7 +162,7 @@ void wil_priv_deinit(struct wil6210_priv *wil)
|
|
|
|
|
|
static void wil_target_reset(struct wil6210_priv *wil)
|
|
|
{
|
|
|
- wil_dbg(wil, "Resetting...\n");
|
|
|
+ wil_dbg_MISC(wil, "Resetting...\n");
|
|
|
|
|
|
/* register write */
|
|
|
#define W(a, v) iowrite32(v, wil->csr + HOSTADDR(a))
|
|
@@ -202,7 +202,7 @@ static void wil_target_reset(struct wil6210_priv *wil)
|
|
|
|
|
|
msleep(2000);
|
|
|
|
|
|
- wil_dbg(wil, "Reset completed\n");
|
|
|
+ wil_dbg_MISC(wil, "Reset completed\n");
|
|
|
|
|
|
#undef W
|
|
|
#undef S
|
|
@@ -225,8 +225,8 @@ static int wil_wait_for_fw_ready(struct wil6210_priv *wil)
|
|
|
wil_err(wil, "Firmware not ready\n");
|
|
|
return -ETIME;
|
|
|
} else {
|
|
|
- wil_dbg(wil, "FW ready after %d ms\n",
|
|
|
- jiffies_to_msecs(to-left));
|
|
|
+ wil_dbg_MISC(wil, "FW ready after %d ms\n",
|
|
|
+ jiffies_to_msecs(to-left));
|
|
|
}
|
|
|
return 0;
|
|
|
}
|
|
@@ -278,7 +278,7 @@ void wil_link_on(struct wil6210_priv *wil)
|
|
|
{
|
|
|
struct net_device *ndev = wil_to_ndev(wil);
|
|
|
|
|
|
- wil_dbg(wil, "%s()\n", __func__);
|
|
|
+ wil_dbg_MISC(wil, "%s()\n", __func__);
|
|
|
|
|
|
netif_carrier_on(ndev);
|
|
|
netif_tx_wake_all_queues(ndev);
|
|
@@ -288,7 +288,7 @@ void wil_link_off(struct wil6210_priv *wil)
|
|
|
{
|
|
|
struct net_device *ndev = wil_to_ndev(wil);
|
|
|
|
|
|
- wil_dbg(wil, "%s()\n", __func__);
|
|
|
+ wil_dbg_MISC(wil, "%s()\n", __func__);
|
|
|
|
|
|
netif_tx_stop_all_queues(ndev);
|
|
|
netif_carrier_off(ndev);
|
|
@@ -311,27 +311,27 @@ static int __wil_up(struct wil6210_priv *wil)
|
|
|
wmi_nettype = wil_iftype_nl2wmi(NL80211_IFTYPE_ADHOC);
|
|
|
switch (wdev->iftype) {
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
- wil_dbg(wil, "type: STATION\n");
|
|
|
+ wil_dbg_MISC(wil, "type: STATION\n");
|
|
|
bi = 0;
|
|
|
ndev->type = ARPHRD_ETHER;
|
|
|
break;
|
|
|
case NL80211_IFTYPE_AP:
|
|
|
- wil_dbg(wil, "type: AP\n");
|
|
|
+ wil_dbg_MISC(wil, "type: AP\n");
|
|
|
bi = 100;
|
|
|
ndev->type = ARPHRD_ETHER;
|
|
|
break;
|
|
|
case NL80211_IFTYPE_P2P_CLIENT:
|
|
|
- wil_dbg(wil, "type: P2P_CLIENT\n");
|
|
|
+ wil_dbg_MISC(wil, "type: P2P_CLIENT\n");
|
|
|
bi = 0;
|
|
|
ndev->type = ARPHRD_ETHER;
|
|
|
break;
|
|
|
case NL80211_IFTYPE_P2P_GO:
|
|
|
- wil_dbg(wil, "type: P2P_GO\n");
|
|
|
+ wil_dbg_MISC(wil, "type: P2P_GO\n");
|
|
|
bi = 100;
|
|
|
ndev->type = ARPHRD_ETHER;
|
|
|
break;
|
|
|
case NL80211_IFTYPE_MONITOR:
|
|
|
- wil_dbg(wil, "type: Monitor\n");
|
|
|
+ wil_dbg_MISC(wil, "type: Monitor\n");
|
|
|
bi = 0;
|
|
|
ndev->type = ARPHRD_IEEE80211_RADIOTAP;
|
|
|
/* ARPHRD_IEEE80211 or ARPHRD_IEEE80211_RADIOTAP ? */
|