summaryrefslogtreecommitdiff
path: root/sys/arch/sh
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-06-26 01:40:50 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-06-26 01:40:50 +0000
commitdcedd4374abb6f3456f8d6bc995601732ffaacf4 (patch)
treed1505a7186d140aa1f41f3c8e28a12c551ba400a /sys/arch/sh
parentf02c64296a18ec9595fe6efcb29e617c260ba9b9 (diff)
return type on a dedicated line when declaring functions
ok mglocker@
Diffstat (limited to 'sys/arch/sh')
-rw-r--r--sys/arch/sh/sh/interrupt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sh/sh/interrupt.c b/sys/arch/sh/sh/interrupt.c
index a2caa6ba666..20c5bf4fabb 100644
--- a/sys/arch/sh/sh/interrupt.c
+++ b/sys/arch/sh/sh/interrupt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: interrupt.c,v 1.18 2024/05/22 14:25:47 jsg Exp $ */
+/* $OpenBSD: interrupt.c,v 1.19 2024/06/26 01:40:49 jsg Exp $ */
/* $NetBSD: interrupt.c,v 1.18 2006/01/25 00:02:57 uwe Exp $ */
/*-
@@ -663,7 +663,8 @@ softintr_disestablish(void *arg)
}
/* Schedule a software interrupt. */
-void softintr_schedule(void *arg)
+void
+softintr_schedule(void *arg)
{
struct sh_soft_intrhand *sih = arg;
struct sh_soft_intr *si = sih->sih_intrhead;