[PATCH] m68k: q40: add missing spaces around '='

From: sunran001
Date: Wed Jul 19 2023 - 23:38:57 EST


add missing spaces to clear checkpatch errors.

ERROR: spaces required around that '=' (ctx:VxV)

Signed-off-by: Ran Sun <sunran001@xxxxxxxxxx>
---
arch/m68k/q40/q40ints.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c
index 127d7ecdbd49..fdd6e48f4fe3 100644
--- a/arch/m68k/q40/q40ints.c
+++ b/arch/m68k/q40/q40ints.c
@@ -132,10 +132,10 @@ static irqreturn_t q40_timer_int(int irq, void *dev_id)
{
ql_ticks = ql_ticks ? 0 : 1;
if (sound_ticks) {
- unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
+ unsigned char sval = (sound_ticks & 1) ? 128-SVOL : 128+SVOL;
sound_ticks--;
- *DAC_LEFT=sval;
- *DAC_RIGHT=sval;
+ *DAC_LEFT = sval;
+ *DAC_RIGHT = sval;
}

if (!ql_ticks) {
@@ -171,7 +171,7 @@ void q40_sched_init (void)

struct IRQ_TABLE{ unsigned mask; int irq ;};
#if 0
-static struct IRQ_TABLE iirqs[]={
+static struct IRQ_TABLE iirqs[] = {
{Q40_IRQ_FRAME_MASK,Q40_IRQ_FRAME},
{Q40_IRQ_KEYB_MASK,Q40_IRQ_KEYBOARD},
{0,0}};
@@ -189,7 +189,7 @@ static struct IRQ_TABLE eirqs[] = {
};

/* complain only this many times about spurious ints : */
-static int ccleirq=60; /* ISA dev IRQs*/
+static int ccleirq = 60; /* ISA dev IRQs*/
/*static int cclirq=60;*/ /* internal */

/* FIXME: add shared ints,mask,unmask,probing.... */