Commit ccf5fa4f authored by Dan Carpenter's avatar Dan Carpenter Committed by Kalle Valo

mwifiex: fix an indenting mistake

We recently added an indent level here but missed this line.  It needs
another tab.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 400b43c5
...@@ -2452,7 +2452,7 @@ static void mwifiex_pcie_fw_dump(struct mwifiex_adapter *adapter) ...@@ -2452,7 +2452,7 @@ static void mwifiex_pcie_fw_dump(struct mwifiex_adapter *adapter)
for (i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
mwifiex_read_reg_byte(adapter, reg, &read_reg); mwifiex_read_reg_byte(adapter, reg, &read_reg);
memory_size |= (read_reg << (i * 8)); memory_size |= (read_reg << (i * 8));
reg++; reg++;
} }
} else { } else {
memory_size = MWIFIEX_FW_DUMP_MAX_MEMSIZE; memory_size = MWIFIEX_FW_DUMP_MAX_MEMSIZE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment