diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2014-10-22 09:16:42 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2015-02-04 21:15:28 -0500 |
commit | a835bb8550f73c5e9aaf71ae829da86d34dcbe2b (patch) | |
tree | 11eb887cf826f4f39d46b99a9119189df3d02dc9 /drivers/dma/dmatest.c | |
parent | 5689ba7fd9f1118bc6b9e4020c116e0cfebc4654 (diff) |
dmatest: fix indentation
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>
Diffstat (limited to 'drivers/dma/dmatest.c')
-rw-r--r-- | drivers/dma/dmatest.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c index a8d7809e2f4c..87e5d9a75f16 100644 --- a/drivers/dma/dmatest.c +++ b/drivers/dma/dmatest.c | |||
@@ -349,14 +349,14 @@ static void dbg_result(const char *err, unsigned int n, unsigned int src_off, | |||
349 | unsigned long data) | 349 | unsigned long data) |
350 | { | 350 | { |
351 | pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n", | 351 | pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n", |
352 | current->comm, n, err, src_off, dst_off, len, data); | 352 | current->comm, n, err, src_off, dst_off, len, data); |
353 | } | 353 | } |
354 | 354 | ||
355 | #define verbose_result(err, n, src_off, dst_off, len, data) ({ \ | 355 | #define verbose_result(err, n, src_off, dst_off, len, data) ({ \ |
356 | if (verbose) \ | 356 | if (verbose) \ |
357 | result(err, n, src_off, dst_off, len, data); \ | 357 | result(err, n, src_off, dst_off, len, data); \ |
358 | else \ | 358 | else \ |
359 | dbg_result(err, n, src_off, dst_off, len, data); \ | 359 | dbg_result(err, n, src_off, dst_off, len, data);\ |
360 | }) | 360 | }) |
361 | 361 | ||
362 | static unsigned long long dmatest_persec(s64 runtime, unsigned int val) | 362 | static unsigned long long dmatest_persec(s64 runtime, unsigned int val) |