|
@@ -16,7 +16,9 @@
|
|
|
|
|
|
#include "core.h"
|
|
|
|
|
|
+#include <linux/module.h>
|
|
|
#include <linux/moduleparam.h>
|
|
|
+#include <linux/export.h>
|
|
|
|
|
|
#include "debug.h"
|
|
|
#include "hif-ops.h"
|
|
@@ -203,6 +205,7 @@ err_wq:
|
|
|
|
|
|
return ret;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ath6kl_core_init);
|
|
|
|
|
|
struct ath6kl *ath6kl_core_create(struct device *dev)
|
|
|
{
|
|
@@ -258,6 +261,7 @@ struct ath6kl *ath6kl_core_create(struct device *dev)
|
|
|
|
|
|
return ar;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ath6kl_core_create);
|
|
|
|
|
|
void ath6kl_core_cleanup(struct ath6kl *ar)
|
|
|
{
|
|
@@ -284,9 +288,14 @@ void ath6kl_core_cleanup(struct ath6kl *ar)
|
|
|
|
|
|
ath6kl_cfg80211_cleanup(ar);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ath6kl_core_cleanup);
|
|
|
|
|
|
void ath6kl_core_destroy(struct ath6kl *ar)
|
|
|
{
|
|
|
ath6kl_cfg80211_destroy(ar);
|
|
|
}
|
|
|
+EXPORT_SYMBOL(ath6kl_core_destroy);
|
|
|
|
|
|
+MODULE_AUTHOR("Qualcomm Atheros");
|
|
|
+MODULE_DESCRIPTION("Core module for AR600x SDIO and USB devices.");
|
|
|
+MODULE_LICENSE("Dual BSD/GPL");
|