diff options
author | Bob Copeland <me@bobcopeland.com> | 2016-02-28 20:07:57 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2016-03-11 07:00:01 -0500 |
commit | c8c91b02a8ddb802259b712245ee97f9c3067a7f (patch) | |
tree | 7e9039f6399836d5ebc3aed0811cde61cb59cf38 /drivers/net/wireless/ath/ath9k/htc_drv_init.c | |
parent | 1451a3634ff5a443e256eb693627ffb1e34cd337 (diff) |
ath9k_htc: fix up indents with spaces
Use tabs here. Found by smatch.
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/htc_drv_init.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/htc_drv_init.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_init.c b/drivers/net/wireless/ath/ath9k/htc_drv_init.c index 8647ab77c019..c2249ad54085 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_init.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_init.c | |||
@@ -262,11 +262,11 @@ static void ath9k_multi_regread(void *hw_priv, u32 *addr, | |||
262 | __be32 tmpval[8]; | 262 | __be32 tmpval[8]; |
263 | int i, ret; | 263 | int i, ret; |
264 | 264 | ||
265 | for (i = 0; i < count; i++) { | 265 | for (i = 0; i < count; i++) { |
266 | tmpaddr[i] = cpu_to_be32(addr[i]); | 266 | tmpaddr[i] = cpu_to_be32(addr[i]); |
267 | } | 267 | } |
268 | 268 | ||
269 | ret = ath9k_wmi_cmd(priv->wmi, WMI_REG_READ_CMDID, | 269 | ret = ath9k_wmi_cmd(priv->wmi, WMI_REG_READ_CMDID, |
270 | (u8 *)tmpaddr , sizeof(u32) * count, | 270 | (u8 *)tmpaddr , sizeof(u32) * count, |
271 | (u8 *)tmpval, sizeof(u32) * count, | 271 | (u8 *)tmpval, sizeof(u32) * count, |
272 | 100); | 272 | 100); |
@@ -275,9 +275,9 @@ static void ath9k_multi_regread(void *hw_priv, u32 *addr, | |||
275 | "Multiple REGISTER READ FAILED (count: %d)\n", count); | 275 | "Multiple REGISTER READ FAILED (count: %d)\n", count); |
276 | } | 276 | } |
277 | 277 | ||
278 | for (i = 0; i < count; i++) { | 278 | for (i = 0; i < count; i++) { |
279 | val[i] = be32_to_cpu(tmpval[i]); | 279 | val[i] = be32_to_cpu(tmpval[i]); |
280 | } | 280 | } |
281 | } | 281 | } |
282 | 282 | ||
283 | static void ath9k_regwrite_multi(struct ath_common *common) | 283 | static void ath9k_regwrite_multi(struct ath_common *common) |