stub binding wifi engine

This commit is contained in:
vemax78
2013-05-01 21:33:54 +02:00
parent 930b0a6a3a
commit 05ab7a3787
9 changed files with 210 additions and 48 deletions

View File

@ -0,0 +1,28 @@
#include "wifi_drivers.h"
/* */
static wifi_global_handle nl80211_global_init(void) {
return NULL;
}
/* */
void nl80211_global_deinit(wifi_global_handle handle) {
}
/* Driver function */
const struct wifi_driver_ops wifi_driver_nl80211_ops = {
.name = "nl80211",
.description = "Linux nl80211/cfg80211",
.global_init = nl80211_global_init,
.global_deinit = nl80211_global_deinit
};