[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20220630165502.l4bb7ov3c3fhuvey@paul-debian-hp>
Date: Thu, 30 Jun 2022 11:55:02 -0500
From: Paul Lemmermann <thepaulodoom@...paulodoom.com>
To: perex@...ex.cz
Cc: linux-kernel@...r.kernel.org, alsa-devel@...a-project.org,
notify@...nel.org
Subject: [PATCH] sound: arm: aaci: fixed formatting
added proper spacing before parenthesis and around 'or' operator.
Signed-off-by: Paul Lemmermann <thepaulodoom@...paulodoom.com>
---
sound/arm/aaci.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c
index 0817ad21a..724a1d50b 100644
--- a/sound/arm/aaci.c
+++ b/sound/arm/aaci.c
@@ -239,7 +239,7 @@ static void aaci_fifo_irq(struct aaci *aaci, int channel, u32 mask)
aacirun->bytes -= len;
/* reading 16 bytes at a time */
- for( ; len > 0; len -= 16) {
+ for ( ; len > 0; len -= 16) {
asm(
"ldmia %1, {r0, r1, r2, r3}\n\t"
"stmia %0!, {r0, r1, r2, r3}"
@@ -250,7 +250,7 @@ static void aaci_fifo_irq(struct aaci *aaci, int channel, u32 mask)
if (ptr >= aacirun->end)
ptr = aacirun->start;
}
- } while(1);
+ } while (1);
aacirun->ptr = ptr;
@@ -662,7 +662,7 @@ static void aaci_pcm_capture_start(struct aaci_runtime *aacirun)
writel(aacirun->cr, aacirun->base + AACI_RXCR);
ie = readl(aacirun->base + AACI_IE);
- ie |= IE_ORIE |IE_RXIE; // overrun and rx interrupt -- half full
+ ie |= IE_ORIE | IE_RXIE; // overrun and rx interrupt -- half full
writel(ie, aacirun->base + AACI_IE);
}
--
2.36.1
Powered by blists - more mailing lists