|
@@ -28,7 +28,9 @@ struct bgscan_ops {
|
|
|
int (*notify_scan)(void *priv, struct wpa_scan_results *scan_res);
|
|
|
void (*notify_beacon_loss)(void *priv);
|
|
|
void (*notify_signal_change)(void *priv, int above,
|
|
|
- int current_signal);
|
|
|
+ int current_signal,
|
|
|
+ int current_noise,
|
|
|
+ int current_txrate);
|
|
|
};
|
|
|
|
|
|
#ifdef CONFIG_BGSCAN
|
|
@@ -39,7 +41,8 @@ int bgscan_notify_scan(struct wpa_supplicant *wpa_s,
|
|
|
struct wpa_scan_results *scan_res);
|
|
|
void bgscan_notify_beacon_loss(struct wpa_supplicant *wpa_s);
|
|
|
void bgscan_notify_signal_change(struct wpa_supplicant *wpa_s, int above,
|
|
|
- int current_signal);
|
|
|
+ int current_signal, int current_noise,
|
|
|
+ int current_txrate);
|
|
|
|
|
|
#else /* CONFIG_BGSCAN */
|
|
|
|
|
@@ -64,7 +67,9 @@ static inline void bgscan_notify_beacon_loss(struct wpa_supplicant *wpa_s)
|
|
|
}
|
|
|
|
|
|
static inline void bgscan_notify_signal_change(struct wpa_supplicant *wpa_s,
|
|
|
- int above, int current_signal)
|
|
|
+ int above, int current_signal,
|
|
|
+ int current_noise,
|
|
|
+ int current_txrate)
|
|
|
{
|
|
|
}
|
|
|
|