Commit a319cefe authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman

staging: csr: drv.c: replace spaces with tabs

replace spaces at the start of the line with tabs
Signed-off-by: default avatarDevendra Naga <devendra.aaru@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f145b4f4
...@@ -166,33 +166,32 @@ s32 CsrHipResultToStatus(CsrResult csrResult) ...@@ -166,33 +166,32 @@ s32 CsrHipResultToStatus(CsrResult csrResult)
static const char* static const char*
trace_putest_cmdid(unifi_putest_command_t putest_cmd) trace_putest_cmdid(unifi_putest_command_t putest_cmd)
{ {
switch (putest_cmd) switch (putest_cmd) {
{ case UNIFI_PUTEST_START:
case UNIFI_PUTEST_START: return "START";
return "START"; case UNIFI_PUTEST_STOP:
case UNIFI_PUTEST_STOP: return "STOP";
return "STOP"; case UNIFI_PUTEST_SET_SDIO_CLOCK:
case UNIFI_PUTEST_SET_SDIO_CLOCK: return "SET CLOCK";
return "SET CLOCK"; case UNIFI_PUTEST_CMD52_READ:
case UNIFI_PUTEST_CMD52_READ: return "CMD52R";
return "CMD52R"; case UNIFI_PUTEST_CMD52_BLOCK_READ:
case UNIFI_PUTEST_CMD52_BLOCK_READ: return "CMD52BR";
return "CMD52BR"; case UNIFI_PUTEST_CMD52_WRITE:
case UNIFI_PUTEST_CMD52_WRITE: return "CMD52W";
return "CMD52W"; case UNIFI_PUTEST_DL_FW:
case UNIFI_PUTEST_DL_FW: return "D/L FW";
return "D/L FW"; case UNIFI_PUTEST_DL_FW_BUFF:
case UNIFI_PUTEST_DL_FW_BUFF: return "D/L FW BUFFER";
return "D/L FW BUFFER"; case UNIFI_PUTEST_COREDUMP_PREPARE:
case UNIFI_PUTEST_COREDUMP_PREPARE: return "PREPARE COREDUMP";
return "PREPARE COREDUMP"; case UNIFI_PUTEST_GP_READ16:
case UNIFI_PUTEST_GP_READ16: return "GP16R";
return "GP16R"; case UNIFI_PUTEST_GP_WRITE16:
case UNIFI_PUTEST_GP_WRITE16: return "GP16W";
return "GP16W"; default:
default: return "ERROR: unrecognised command";
return "ERROR: unrecognised command"; }
}
} }
#ifdef CSR_WIFI_HIP_DEBUG_OFFLINE #ifdef CSR_WIFI_HIP_DEBUG_OFFLINE
......
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