enable KASSERT in net80211 and fixes wrong uses of the macro.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41425 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2011-05-10 21:59:55 +00:00
parent 7df33d912b
commit 26d28d0d1d
2 changed files with 3 additions and 2 deletions

View File

@ -147,7 +147,7 @@ start_wlan(device_t device)
// ic_vap_create() established that gDevices[i] links to vap->iv_ifp now
KASSERT(gDevices[i] == vap->iv_ifp,
"start_wlan: gDevices[i] != vap->iv_ifp");
("start_wlan: gDevices[i] != vap->iv_ifp"));
vap->iv_ifp->scan_done_sem = create_sem(0, "wlan scan done");
@ -182,7 +182,7 @@ stop_wlan(device_t device)
ic->ic_vap_delete(vap);
// ic_vap_delete freed gDevices[i]
KASSERT(gDevices[i] == NULL, "stop_wlan: gDevices[i] != NULL");
KASSERT(gDevices[i] == NULL, ("stop_wlan: gDevices[i] != NULL"));
// assign the base device ifp again
gDevices[i] = ic->ic_ifp;

View File

@ -40,6 +40,7 @@
extern "C" {
# endif
#define INVARIANTS 1
#include <sys/kernel.h>
#include <sys/mutex.h>