lk: msm: Fix files to have uniform coding style

No functional changes, just style code formatting style changes here.

Change-Id: Id3f1995ef97765b393c5c26259011c9ce1321106
diff --git a/platform/msm_shared/dmov.h b/platform/msm_shared/dmov.h
index 0f8008f..d63fcce 100644
--- a/platform/msm_shared/dmov.h
+++ b/platform/msm_shared/dmov.h
@@ -32,14 +32,13 @@
 #ifdef PLATFORM_MSM7X30
 #define MSM_DMOV_BASE 0xAC400000
 #else
-#ifdef PLATFORM_MDM9X15 //TODO: Move to IOMAP
+#ifdef PLATFORM_MDM9X15		//TODO: Move to IOMAP
 #define MSM_DMOV_BASE 0x18300000
 #else
 #define MSM_DMOV_BASE 0xA9700000
 #endif
 #endif
 
-
 #ifdef PLATFORM_MDM9X15
 #define DMOV_SD0(off, ch) (MSM_DMOV_BASE + 0x00000 + (off) + ((ch) << 2))
 #define DMOV_SD1(off, ch) (MSM_DMOV_BASE + 0x20800 + (off) + ((ch) << 2))
@@ -63,7 +62,6 @@
 #endif
 #endif
 
-
 /* only security domain 3 is available to the ARM11
 **
 ** SD0 -> mARM trusted, SD1 -> mARM nontrusted, SD2 -> aDSP, SD3 -> aARM
@@ -71,18 +69,18 @@
 */
 
 #define DMOV_CMD_PTR(ch)      DMOV_SDn(0x000, ch)
-#define DMOV_CMD_LIST         (0 << 29) /* does not work */
-#define DMOV_CMD_PTR_LIST     (1 << 29) /* works */
-#define DMOV_CMD_INPUT_CFG    (2 << 29) /* untested */
-#define DMOV_CMD_OUTPUT_CFG   (3 << 29) /* untested */
+#define DMOV_CMD_LIST         (0 << 29)	/* does not work */
+#define DMOV_CMD_PTR_LIST     (1 << 29)	/* works */
+#define DMOV_CMD_INPUT_CFG    (2 << 29)	/* untested */
+#define DMOV_CMD_OUTPUT_CFG   (3 << 29)	/* untested */
 #define DMOV_CMD_ADDR(addr)   ((addr) >> 3)
 
 #define DMOV_RSLT(ch)         DMOV_SDn(0x040, ch)
-#define DMOV_RSLT_VALID       (1 << 31) /* 0 == host has empties result fifo */
+#define DMOV_RSLT_VALID       (1 << 31)	/* 0 == host has empties result fifo */
 #define DMOV_RSLT_ERROR       (1 << 3)
 #define DMOV_RSLT_FLUSH       (1 << 2)
-#define DMOV_RSLT_DONE        (1 << 1)  /* top pointer done */
-#define DMOV_RSLT_USER        (1 << 0)  /* command with FR force result */
+#define DMOV_RSLT_DONE        (1 << 1)	/* top pointer done */
+#define DMOV_RSLT_USER        (1 << 0)	/* command with FR force result */
 
 #define DMOV_FLUSH0(ch)       DMOV_SDn(0x080, ch)
 #define DMOV_FLUSH1(ch)       DMOV_SDn(0x0C0, ch)
@@ -93,7 +91,7 @@
 
 #define DMOV_STATUS(ch)       DMOV_SDn(0x200, ch)
 #define DMOV_STATUS_RSLT_COUNT(n)    (((n) >> 29))
-#define DMOV_STATUS_CMD_COUNT(n)     (((n) >> 27) & 3) 
+#define DMOV_STATUS_CMD_COUNT(n)     (((n) >> 27) & 3)
 #define DMOV_STATUS_RSLT_VALID       (1 << 1)
 #define DMOV_STATUS_CMD_PTR_RDY      (1 << 0)
 
@@ -130,7 +128,6 @@
 /* no client rate control ifc (eg, ram) */
 #define DMOV_NONE_CRCI        0
 
-
 /* If the CMD_PTR register has CMD_PTR_LIST selected, the data mover
 ** is going to walk a list of 32bit pointers as described below.  Each
 ** pointer points to a *array* of dmov_s, etc structs.  The last pointer
@@ -138,56 +135,54 @@
 ** is marked with CMD_LC (see below).
 */
 #define CMD_PTR_ADDR(addr)  ((addr) >> 3)
-#define CMD_PTR_LP          (1 << 31) /* last pointer */
-#define CMD_PTR_PT          (3 << 29) /* ? */
-
+#define CMD_PTR_LP          (1 << 31)	/* last pointer */
+#define CMD_PTR_PT          (3 << 29)	/* ? */
 
 /* Single Item Mode -- seems to work as expected */
 typedef struct {
-    unsigned cmd;
-    unsigned src;
-    unsigned dst;
-    unsigned len;
+	unsigned cmd;
+	unsigned src;
+	unsigned dst;
+	unsigned len;
 } dmov_s;
 
 /* Scatter/Gather Mode -- does this work?*/
 typedef struct {
-    unsigned cmd;
-    unsigned src_dscr;
-    unsigned dst_dscr;
-    unsigned _reserved;
+	unsigned cmd;
+	unsigned src_dscr;
+	unsigned dst_dscr;
+	unsigned _reserved;
 } dmov_sg;
 
 /* bits for the cmd field of the above structures */
 
-#define CMD_LC      (1 << 31)  /* last command */
-#define CMD_FR      (1 << 22)  /* force result -- does not work? */
-#define CMD_OCU     (1 << 21)  /* other channel unblock */
-#define CMD_OCB     (1 << 20)  /* other channel block */
-#define CMD_TCB     (1 << 19)  /* ? */
-#define CMD_DAH     (1 << 18)  /* destination address hold -- does not work?*/
-#define CMD_SAH     (1 << 17)  /* source address hold -- does not work? */
+#define CMD_LC      (1 << 31)	/* last command */
+#define CMD_FR      (1 << 22)	/* force result -- does not work? */
+#define CMD_OCU     (1 << 21)	/* other channel unblock */
+#define CMD_OCB     (1 << 20)	/* other channel block */
+#define CMD_TCB     (1 << 19)	/* ? */
+#define CMD_DAH     (1 << 18)	/* destination address hold -- does not work? */
+#define CMD_SAH     (1 << 17)	/* source address hold -- does not work? */
 
-#define CMD_MODE_SINGLE     (0 << 0) /* dmov_s structure used */
-#define CMD_MODE_SG         (1 << 0) /* untested */
-#define CMD_MODE_IND_SG     (2 << 0) /* untested */
-#define CMD_MODE_BOX        (3 << 0) /* untested */
+#define CMD_MODE_SINGLE     (0 << 0)	/* dmov_s structure used */
+#define CMD_MODE_SG         (1 << 0)	/* untested */
+#define CMD_MODE_IND_SG     (2 << 0)	/* untested */
+#define CMD_MODE_BOX        (3 << 0)	/* untested */
 
-#define CMD_DST_SWAP_BYTES  (1 << 14) /* exchange each byte n with byte n+1 */
-#define CMD_DST_SWAP_SHORTS (1 << 15) /* exchange each short n with short n+1 */
-#define CMD_DST_SWAP_WORDS  (1 << 16) /* exchange each word n with word n+1 */
+#define CMD_DST_SWAP_BYTES  (1 << 14)	/* exchange each byte n with byte n+1 */
+#define CMD_DST_SWAP_SHORTS (1 << 15)	/* exchange each short n with short n+1 */
+#define CMD_DST_SWAP_WORDS  (1 << 16)	/* exchange each word n with word n+1 */
 
-#define CMD_SRC_SWAP_BYTES  (1 << 11) /* exchange each byte n with byte n+1 */
-#define CMD_SRC_SWAP_SHORTS (1 << 12) /* exchange each short n with short n+1 */
-#define CMD_SRC_SWAP_WORDS  (1 << 13) /* exchange each word n with word n+1 */
+#define CMD_SRC_SWAP_BYTES  (1 << 11)	/* exchange each byte n with byte n+1 */
+#define CMD_SRC_SWAP_SHORTS (1 << 12)	/* exchange each short n with short n+1 */
+#define CMD_SRC_SWAP_WORDS  (1 << 13)	/* exchange each word n with word n+1 */
 
 #define CMD_DST_CRCI(n)     (((n) & 15) << 7)
 #define CMD_SRC_CRCI(n)     (((n) & 15) << 3)
 
-
 /* NOTES:
 **
 ** Looks like Channels 4, 5, 6, 7, 8, 10, 11 are available to the ARM11
 **
 */
-#endif /* __PLATFORM_MSM_SHARED_DMOV_H */
+#endif				/* __PLATFORM_MSM_SHARED_DMOV_H */