mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 01:59:54 -04:00
staging: rtl8192e: Remove variable channel_map
Remove variable channel_map as it is initialized but not used. Remove channel_array as well as it is without channel_map unused. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/19ca762b4b9d5a3e857b31c22f0688324ca3bd9d.1701989555.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
97cb8afde7
commit
5c983f6187
@@ -12,18 +12,8 @@ struct channel_list {
|
||||
u8 len;
|
||||
};
|
||||
|
||||
static struct channel_list channel_array = {{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}, 13};
|
||||
|
||||
void dot11d_channel_map(struct rtllib_device *ieee)
|
||||
{
|
||||
int i;
|
||||
|
||||
memset(GET_DOT11D_INFO(ieee)->channel_map, 0,
|
||||
sizeof(GET_DOT11D_INFO(ieee)->channel_map));
|
||||
for (i = 0; i < channel_array.len; i++)
|
||||
GET_DOT11D_INFO(ieee)->channel_map[channel_array.channel[i]] = 1;
|
||||
|
||||
for (i = 12; i <= 13; i++)
|
||||
GET_DOT11D_INFO(ieee)->channel_map[i] = 2;
|
||||
}
|
||||
EXPORT_SYMBOL(dot11d_channel_map);
|
||||
|
||||
@@ -19,7 +19,6 @@
|
||||
*/
|
||||
|
||||
struct rt_dot11d_info {
|
||||
u8 channel_map[MAX_CHANNEL_NUMBER + 1];
|
||||
};
|
||||
|
||||
#define GET_DOT11D_INFO(__ieee_dev) \
|
||||
|
||||
Reference in New Issue
Block a user