Commit 978b5326 authored by Senthil Balasubramanian's avatar Senthil Balasubramanian Committed by John W. Linville
Browse files

ath9k: Incorrect AR9285 version check macro



Fix AR9285 1.1 and 1.2 version check macro.

Signed-off-by: default avatarSenthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4e845168
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -778,14 +778,14 @@
#define AR_SREV_9285_10_OR_LATER(_ah) \
	(((_ah)->hw_version.macVersion >= AR_SREV_VERSION_9285))
#define AR_SREV_9285_11(_ah) \
	(AR_SREV_9280(ah) && \
	(AR_SREV_9285(ah) && \
	 ((_ah)->hw_version.macRev == AR_SREV_REVISION_9285_11))
#define AR_SREV_9285_11_OR_LATER(_ah) \
	(((_ah)->hw_version.macVersion > AR_SREV_VERSION_9285) || \
	 (AR_SREV_9285(ah) && ((_ah)->hw_version.macRev >= \
			       AR_SREV_REVISION_9285_11)))
#define AR_SREV_9285_12(_ah) \
	(AR_SREV_9280(ah) && \
	(AR_SREV_9285(ah) && \
	 ((_ah)->hw_version.macRev == AR_SREV_REVISION_9285_12))
#define AR_SREV_9285_12_OR_LATER(_ah) \
	(((_ah)->hw_version.macVersion > AR_SREV_VERSION_9285) || \