Add autoscan module named exponential
[mech_eap.git] / wpa_supplicant / autoscan.c
index 2d4249c..c537291 100644 (file)
 #include "scan.h"
 #include "autoscan.h"
 
+#ifdef CONFIG_AUTOSCAN_EXPONENTIAL
+extern const struct autoscan_ops autoscan_exponential_ops;
+#endif /* CONFIG_AUTOSCAN_EXPONENTIAL */
+
 static const struct autoscan_ops * autoscan_modules[] = {
+#ifdef CONFIG_AUTOSCAN_EXPONENTIAL
+       &autoscan_exponential_ops,
+#endif /* CONFIG_AUTOSCAN_EXPONENTIAL */
        NULL
 };