rtl8188eu: Remove CONFIG_FIND_BEST_CHANNEL

This variable is selected.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-19 17:13:46 -05:00
parent f50db5cd2c
commit d2528caa5f
7 changed files with 0 additions and 19 deletions

View file

@ -494,14 +494,12 @@ void rtw_proc_init_one(struct net_device *dev)
}
#endif
#ifdef CONFIG_FIND_BEST_CHANNEL
entry = create_proc_read_entry("best_channel", S_IFREG | S_IRUGO,
dir_dev, proc_get_best_channel, dev);
if (!entry) {
pr_info("Unable to create_proc_read_entry!\n");
return;
}
#endif
entry = create_proc_read_entry("rx_signal", S_IFREG | S_IRUGO,
dir_dev, proc_get_rx_signal, dev);
@ -606,9 +604,7 @@ void rtw_proc_remove_one(struct net_device *dev)
remove_proc_entry("all_sta_info", dir_dev);
#endif
#ifdef CONFIG_FIND_BEST_CHANNEL
remove_proc_entry("best_channel", dir_dev);
#endif
remove_proc_entry("rx_signal", dir_dev);
#ifdef CONFIG_80211N_HT
remove_proc_entry("cbw40_enable", dir_dev);