Module Name: src Committed By: thorpej Date: Wed May 5 14:58:57 UTC 2021
Modified Files: src/sys/arch/alpha/alpha: interrupt.c Log Message: Make scb_strat() static. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/sys/arch/alpha/alpha/interrupt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/alpha/alpha/interrupt.c diff -u src/sys/arch/alpha/alpha/interrupt.c:1.95 src/sys/arch/alpha/alpha/interrupt.c:1.96 --- src/sys/arch/alpha/alpha/interrupt.c:1.95 Tue Apr 20 01:29:40 2021 +++ src/sys/arch/alpha/alpha/interrupt.c Wed May 5 14:58:57 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: interrupt.c,v 1.95 2021/04/20 01:29:40 thorpej Exp $ */ +/* $NetBSD: interrupt.c,v 1.96 2021/05/05 14:58:57 thorpej Exp $ */ /*- * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc. @@ -65,7 +65,7 @@ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.95 2021/04/20 01:29:40 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.96 2021/05/05 14:58:57 thorpej Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -92,7 +92,7 @@ __KERNEL_RCSID(0, "$NetBSD: interrupt.c, struct scbvec scb_iovectab[SCB_VECTOIDX(SCB_SIZE - SCB_IOVECBASE)] __read_mostly; -void scb_stray(void *, u_long); +static void scb_stray(void *, u_long); void scb_init(void) @@ -105,7 +105,7 @@ scb_init(void) } } -void +static void scb_stray(void *arg, u_long vec) {