diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2007-09-25 14:54:44 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:53:03 -0400 |
commit | 12dadb9009723dd0512091643e6e403f9e1b25cb (patch) | |
tree | 5c2c4e399d5c8132358fbbc4551c9d0425c84900 /drivers | |
parent | e9136550eb7d9409292a93e2d2265afa11bee234 (diff) |
[PATCH] rt2x00: Correctly identify rt2561turbo
Apparently rt2561s actually has PCI ID 0x0301
and rt2561 actually has PCI ID 0x0302.
Where rt2561s supports Turbo.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 046eecfb16c0..5f05c7ee0dfa 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -159,8 +159,8 @@ struct rt2x00_chip { | |||
159 | #define RT2460 0x0101 | 159 | #define RT2460 0x0101 |
160 | #define RT2560 0x0201 | 160 | #define RT2560 0x0201 |
161 | #define RT2570 0x1201 | 161 | #define RT2570 0x1201 |
162 | #define RT2561 0x0301 | 162 | #define RT2561s 0x0301 /* Turbo */ |
163 | #define RT2561s 0x0302 | 163 | #define RT2561 0x0302 |
164 | #define RT2661 0x0401 | 164 | #define RT2661 0x0401 |
165 | #define RT2571 0x1300 | 165 | #define RT2571 0x1300 |
166 | 166 | ||