diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2009-01-23 11:03:06 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:26 -0500 |
commit | 6ba265e9cc764bc401cda284954cf2bdd4408c38 (patch) | |
tree | d6c0921552cc3dd88aa0c1ce69239e61df175f78 /drivers/net/wireless/rt2x00 | |
parent | 81b1e19ac2cadc2f8a05c82ffb1abe20a0594d1f (diff) |
rt2x00: rt2x00_rev() should return u32
The "rev" field in chipset definition is an u32,
which means that rt2x00_rev() which returns that field
should be of the same type.
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')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index 46918deceda1..2a9909dd551d 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -868,7 +868,7 @@ static inline char rt2x00_rf(const struct rt2x00_chip *chipset, const u16 chip) | |||
868 | return (chipset->rf == chip); | 868 | return (chipset->rf == chip); |
869 | } | 869 | } |
870 | 870 | ||
871 | static inline u16 rt2x00_rev(const struct rt2x00_chip *chipset) | 871 | static inline u32 rt2x00_rev(const struct rt2x00_chip *chipset) |
872 | { | 872 | { |
873 | return chipset->rev; | 873 | return chipset->rev; |
874 | } | 874 | } |