diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-08-04 10:38:47 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 16:29:58 -0400 |
commit | 8c5e7a5f59f9d11597bd47de28334da318ea0e80 (patch) | |
tree | 46dc69607e8a196fd68b3b040b312bc1e7fc0559 /drivers/net/wireless/rt2x00/rt2x00config.c | |
parent | 906c110fcc24bdd5bf0fa22d89ac75d99c747e53 (diff) |
rt2x00: Gather channel information in structure
Channel information which is read from EEPROM should
be read into an array containing per-channel information.
This removes the requirement of multiple arrays and makes
the channel handling a bit cleaner and easier to expand.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00config.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00config.c b/drivers/net/wireless/rt2x00/rt2x00config.c index d134c3be539a..ea37c7962043 100644 --- a/drivers/net/wireless/rt2x00/rt2x00config.c +++ b/drivers/net/wireless/rt2x00/rt2x00config.c | |||
@@ -245,6 +245,10 @@ config: | |||
245 | memcpy(&libconf.rf, | 245 | memcpy(&libconf.rf, |
246 | &rt2x00dev->spec.channels[conf->channel->hw_value], | 246 | &rt2x00dev->spec.channels[conf->channel->hw_value], |
247 | sizeof(libconf.rf)); | 247 | sizeof(libconf.rf)); |
248 | |||
249 | memcpy(&libconf.channel, | ||
250 | &rt2x00dev->spec.channels_info[conf->channel->hw_value], | ||
251 | sizeof(libconf.channel)); | ||
248 | } | 252 | } |
249 | 253 | ||
250 | if (flags & CONFIG_UPDATE_ANTENNA) { | 254 | if (flags & CONFIG_UPDATE_ANTENNA) { |