[PATCH] m68k: Fix two occurrences of the checkpatch.pl error:

From: sunran001
Date: Fri Jul 21 2023 - 04:01:04 EST


ERROR: that open brace { should be on the previous line
ERROR: space required after that ',' (ctx:VxV)

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

diff --git a/arch/m68k/q40/config.c b/arch/m68k/q40/config.c
index c78ee709b458..62ed3634c0a4 100644
--- a/arch/m68k/q40/config.c
+++ b/arch/m68k/q40/config.c
@@ -146,9 +146,8 @@ static void q40_get_model(char *model)
sprintf(model, "Q40");
}

-static unsigned int serports[] =
-{
- 0x3f8,0x2f8,0x3e8,0x2e8,0
+static unsigned int serports[] = {
+ 0x3f8, 0x2f8, 0x3e8, 0x2e8, 0
};

static void __init q40_disable_irqs(void)