From: Ben Greear <greearb@candelatech.com>
Date: Sun, 15 Feb 2015 14:50:39 +0000 (+0200)
Subject: ath10k: fix CE_DESC_FLAGS_META_DATA_LSB definition
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=99fc6f3adcbf8db11a233658a2beb8eedf3e2a37;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

ath10k: fix CE_DESC_FLAGS_META_DATA_LSB definition

The value was off by one.  The error probably has no negative
affect on any upstream firmware, but should be fixed anyway
in case it comes into use in the future.

Signed-off-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
---

diff --git a/drivers/net/wireless/ath/ath10k/ce.h b/drivers/net/wireless/ath/ath10k/ce.h
index c18647b87f71..0eddb204d85b 100644
--- a/drivers/net/wireless/ath/ath10k/ce.h
+++ b/drivers/net/wireless/ath/ath10k/ce.h
@@ -39,7 +39,7 @@ struct ath10k_ce_pipe;
 #define CE_DESC_FLAGS_GATHER         (1 << 0)
 #define CE_DESC_FLAGS_BYTE_SWAP      (1 << 1)
 #define CE_DESC_FLAGS_META_DATA_MASK 0xFFFC
-#define CE_DESC_FLAGS_META_DATA_LSB  3
+#define CE_DESC_FLAGS_META_DATA_LSB  2
 
 struct ce_desc {
 	__le32 addr;