]> git.karo-electronics.de Git - linux-beck.git/commitdiff
dmatest: fix indentation
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 22 Oct 2014 13:16:42 +0000 (16:16 +0300)
committerVinod Koul <vinod.koul@intel.com>
Thu, 5 Feb 2015 02:15:28 +0000 (18:15 -0800)
Simple fixes an indentation in few places across the code.

There is no functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/dmatest.c

index a8d7809e2f4c639aeb1c9dbbf6f83f36765c93b4..87e5d9a75f16161fbbc10b2be89eced2a9ac0d18 100644 (file)
@@ -349,14 +349,14 @@ static void dbg_result(const char *err, unsigned int n, unsigned int src_off,
                       unsigned long data)
 {
        pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
-                  current->comm, n, err, src_off, dst_off, len, data);
+                current->comm, n, err, src_off, dst_off, len, data);
 }
 
-#define verbose_result(err, n, src_off, dst_off, len, data) ({ \
-       if (verbose) \
-               result(err, n, src_off, dst_off, len, data); \
-       else \
-               dbg_result(err, n, src_off, dst_off, len, data); \
+#define verbose_result(err, n, src_off, dst_off, len, data) ({ \
+       if (verbose)                                            \
+               result(err, n, src_off, dst_off, len, data);    \
+       else                                                    \
+               dbg_result(err, n, src_off, dst_off, len, data);\
 })
 
 static unsigned long long dmatest_persec(s64 runtime, unsigned int val)