mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 13:46:24 +00:00
libertas: debug output tweaks for lbs_thread
* make debug output match the variable name * always report that lbs_remove_rtap() has has been exited Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Acked-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
e100bb64bf
commit
5f505d9025
1 changed files with 3 additions and 2 deletions
|
@ -702,7 +702,7 @@ static int lbs_thread(void *data)
|
|||
|
||||
if (shouldsleep) {
|
||||
lbs_deb_thread("sleeping, connect_status %d, "
|
||||
"ps_mode %d, ps_state %d\n",
|
||||
"psmode %d, psstate %d\n",
|
||||
priv->connect_status,
|
||||
priv->psmode, priv->psstate);
|
||||
spin_unlock_irq(&priv->driver_lock);
|
||||
|
@ -1532,10 +1532,11 @@ static void lbs_remove_rtap(struct lbs_private *priv)
|
|||
{
|
||||
lbs_deb_enter(LBS_DEB_MAIN);
|
||||
if (priv->rtap_net_dev == NULL)
|
||||
return;
|
||||
goto out;
|
||||
unregister_netdev(priv->rtap_net_dev);
|
||||
free_netdev(priv->rtap_net_dev);
|
||||
priv->rtap_net_dev = NULL;
|
||||
out:
|
||||
lbs_deb_leave(LBS_DEB_MAIN);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue