diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2009-02-15 11:42:48 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-27 14:52:35 -0500 |
commit | 53bc647a1a96189be53b68b9e8c40df0f42fc300 (patch) | |
tree | 97482c3544d35921ff06f3221456e389194fd640 /drivers/net/wireless/rt2x00/rt2400pci.h | |
parent | 62750f421f6eebabedf545183ef8291cd3e63c78 (diff) |
rt2x00: Remove check for rf word 0
The only way rf_write() can be called with word 0 is
when the user sends the wrong word index through debugfs.
However the values which are send through debugfs are
validated using the RF_BASE and RF_SIZE macro values,
the most logical solution is to increase RF_BASE with 4
and decrease RF_SIZE with 4 (RF_SIZE has always been
1 word too big)
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/rt2400pci.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2400pci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2400pci.h b/drivers/net/wireless/rt2x00/rt2400pci.h index 72ac31c3cb75..ec3b004ddc3c 100644 --- a/drivers/net/wireless/rt2x00/rt2400pci.h +++ b/drivers/net/wireless/rt2x00/rt2400pci.h | |||
@@ -48,8 +48,8 @@ | |||
48 | #define EEPROM_SIZE 0x0100 | 48 | #define EEPROM_SIZE 0x0100 |
49 | #define BBP_BASE 0x0000 | 49 | #define BBP_BASE 0x0000 |
50 | #define BBP_SIZE 0x0020 | 50 | #define BBP_SIZE 0x0020 |
51 | #define RF_BASE 0x0000 | 51 | #define RF_BASE 0x0004 |
52 | #define RF_SIZE 0x0010 | 52 | #define RF_SIZE 0x000c |
53 | 53 | ||
54 | /* | 54 | /* |
55 | * Number of TX queues. | 55 | * Number of TX queues. |