diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00reg.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00reg.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00reg.h b/drivers/net/wireless/rt2x00/rt2x00reg.h index c2fba7c9f05c..9ddc2d07eef8 100644 --- a/drivers/net/wireless/rt2x00/rt2x00reg.h +++ b/drivers/net/wireless/rt2x00/rt2x00reg.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (C) 2004 - 2008 rt2x00 SourceForge Project | 2 | Copyright (C) 2004 - 2009 rt2x00 SourceForge Project |
3 | <http://rt2x00.serialmonkey.com> | 3 | <http://rt2x00.serialmonkey.com> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
@@ -125,6 +125,16 @@ enum cipher { | |||
125 | }; | 125 | }; |
126 | 126 | ||
127 | /* | 127 | /* |
128 | * Rate modulations | ||
129 | */ | ||
130 | enum rate_modulation { | ||
131 | RATE_MODE_CCK = 0, | ||
132 | RATE_MODE_OFDM = 1, | ||
133 | RATE_MODE_HT_MIX = 2, | ||
134 | RATE_MODE_HT_GREENFIELD = 3, | ||
135 | }; | ||
136 | |||
137 | /* | ||
128 | * Register handlers. | 138 | * Register handlers. |
129 | * We store the position of a register field inside a field structure, | 139 | * We store the position of a register field inside a field structure, |
130 | * This will simplify the process of setting and reading a certain field | 140 | * This will simplify the process of setting and reading a certain field |