Module Name:    src
Committed By:   thorpej
Date:           Wed Dec 20 15:34:46 UTC 2023

Modified Files:
        src/sys/arch/sh3/dev: adc.c rtc.c shpcic.c wdog.c
        src/sys/arch/sh3/sh3: coff_exec.c interrupt.c sh3_machdep.c
            vm_machdep.c
        src/sys/arch/shark/isa: isadma_machdep.c
        src/sys/arch/shark/ofw: chipsfb_ofbus.c vga_ofbus.c
        src/sys/arch/shark/shark: autoconf.c
        src/sys/arch/vax/vax: autoconf.c ctu.c ka88.c sgmap.c
        src/sys/arch/vax/vsa: leds.c ncr.c vsbus_dma.c
        src/sys/arch/xen/xen: xenmem.c
        src/sys/arch/zaurus/dev: ztp.c
        src/sys/arch/zaurus/zaurus: autoconf.c

Log Message:
Remove unnecessary <sys/malloc.h>.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/sh3/dev/adc.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sh3/dev/rtc.c
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/sh3/dev/shpcic.c
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/sh3/dev/wdog.c
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/sh3/sh3/coff_exec.c
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/sh3/sh3/interrupt.c
cvs rdiff -u -r1.112 -r1.113 src/sys/arch/sh3/sh3/sh3_machdep.c
cvs rdiff -u -r1.83 -r1.84 src/sys/arch/sh3/sh3/vm_machdep.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/shark/isa/isadma_machdep.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/shark/ofw/chipsfb_ofbus.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/shark/ofw/vga_ofbus.c
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/shark/shark/autoconf.c
cvs rdiff -u -r1.100 -r1.101 src/sys/arch/vax/vax/autoconf.c
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/vax/vax/ctu.c
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/vax/vax/ka88.c
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/vax/vax/sgmap.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/vax/vsa/leds.c
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/vax/vsa/ncr.c
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/vax/vsa/vsbus_dma.c
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/xen/xen/xenmem.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/zaurus/dev/ztp.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/zaurus/zaurus/autoconf.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/sh3/dev/adc.c
diff -u src/sys/arch/sh3/dev/adc.c:1.15 src/sys/arch/sh3/dev/adc.c:1.16
--- src/sys/arch/sh3/dev/adc.c:1.15	Sat Aug  7 16:19:05 2021
+++ src/sys/arch/sh3/dev/adc.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: adc.c,v 1.15 2021/08/07 16:19:05 thorpej Exp $ */
+/*	$NetBSD: adc.c,v 1.16 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*
  * Copyright (c) 2003 Valeriy E. Ushakov
@@ -28,12 +28,11 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: adc.c,v 1.15 2021/08/07 16:19:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: adc.c,v 1.16 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/systm.h>
 
 #include <sh3/adcreg.h>

Index: src/sys/arch/sh3/dev/rtc.c
diff -u src/sys/arch/sh3/dev/rtc.c:1.10 src/sys/arch/sh3/dev/rtc.c:1.11
--- src/sys/arch/sh3/dev/rtc.c:1.10	Thu Nov 20 16:34:26 2014
+++ src/sys/arch/sh3/dev/rtc.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: rtc.c,v 1.10 2014/11/20 16:34:26 christos Exp $ */
+/*	$NetBSD: rtc.c,v 1.11 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,12 +30,11 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.10 2014/11/20 16:34:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.11 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/systm.h>
 #ifdef GPROF
 #include <sys/gmon.h>

Index: src/sys/arch/sh3/dev/shpcic.c
diff -u src/sys/arch/sh3/dev/shpcic.c:1.22 src/sys/arch/sh3/dev/shpcic.c:1.23
--- src/sys/arch/sh3/dev/shpcic.c:1.22	Sat Aug  7 16:19:05 2021
+++ src/sys/arch/sh3/dev/shpcic.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: shpcic.c,v 1.22 2021/08/07 16:19:05 thorpej Exp $	*/
+/*	$NetBSD: shpcic.c,v 1.23 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*-
  * Copyright (C) 2005 NONAKA Kimihiro <non...@netbsd.org>
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: shpcic.c,v 1.22 2021/08/07 16:19:05 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: shpcic.c,v 1.23 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_pci.h"
 
@@ -34,7 +34,6 @@ __KERNEL_RCSID(0, "$NetBSD: shpcic.c,v 1
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 
 #include <dev/pci/pcireg.h>
 #include <dev/pci/pcivar.h>

Index: src/sys/arch/sh3/dev/wdog.c
diff -u src/sys/arch/sh3/dev/wdog.c:1.18 src/sys/arch/sh3/dev/wdog.c:1.19
--- src/sys/arch/sh3/dev/wdog.c:1.18	Fri Jul 25 08:10:34 2014
+++ src/sys/arch/sh3/dev/wdog.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: wdog.c,v 1.18 2014/07/25 08:10:34 dholland Exp $ */
+/*	$NetBSD: wdog.c,v 1.19 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*-
  * Copyright (C) 2000 SAITOH Masanobu.  All rights reserved.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wdog.c,v 1.18 2014/07/25 08:10:34 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wdog.c,v 1.19 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/buf.h>
@@ -37,7 +37,6 @@ __KERNEL_RCSID(0, "$NetBSD: wdog.c,v 1.1
 #include <sys/device.h>
 #include <sys/fcntl.h>
 #include <sys/ioctl.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 #include <sys/syslog.h>
 #include <sys/conf.h>

Index: src/sys/arch/sh3/sh3/coff_exec.c
diff -u src/sys/arch/sh3/sh3/coff_exec.c:1.34 src/sys/arch/sh3/sh3/coff_exec.c:1.35
--- src/sys/arch/sh3/sh3/coff_exec.c:1.34	Wed Nov 20 19:37:52 2019
+++ src/sys/arch/sh3/sh3/coff_exec.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: coff_exec.c,v 1.34 2019/11/20 19:37:52 pgoyette Exp $	*/
+/*	$NetBSD: coff_exec.c,v 1.35 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Scott Bartram
@@ -35,13 +35,12 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: coff_exec.c,v 1.34 2019/11/20 19:37:52 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: coff_exec.c,v 1.35 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/exec.h>
-#include <sys/malloc.h>
 #include <sys/vnode.h>
 #include <sys/resourcevar.h>
 #include <sys/namei.h>

Index: src/sys/arch/sh3/sh3/interrupt.c
diff -u src/sys/arch/sh3/sh3/interrupt.c:1.29 src/sys/arch/sh3/sh3/interrupt.c:1.30
--- src/sys/arch/sh3/sh3/interrupt.c:1.29	Mon Dec 20 00:25:43 2010
+++ src/sys/arch/sh3/sh3/interrupt.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: interrupt.c,v 1.29 2010/12/20 00:25:43 matt Exp $	*/
+/*	$NetBSD: interrupt.c,v 1.30 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,10 +30,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.29 2010/12/20 00:25:43 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.30 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
-#include <sys/malloc.h>
 #include <sys/intr.h>
 #include <sys/cpu.h>
 

Index: src/sys/arch/sh3/sh3/sh3_machdep.c
diff -u src/sys/arch/sh3/sh3/sh3_machdep.c:1.112 src/sys/arch/sh3/sh3/sh3_machdep.c:1.113
--- src/sys/arch/sh3/sh3/sh3_machdep.c:1.112	Wed Feb 23 21:54:40 2022
+++ src/sys/arch/sh3/sh3/sh3_machdep.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $	*/
+/*	$NetBSD: sh3_machdep.c,v 1.113 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2002 The NetBSD Foundation, Inc.
@@ -65,7 +65,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.112 2022/02/23 21:54:40 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sh3_machdep.c,v 1.113 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
@@ -79,7 +79,6 @@ __KERNEL_RCSID(0, "$NetBSD: sh3_machdep.
 #include <sys/buf.h>
 #include <sys/exec.h>
 #include <sys/kernel.h>
-#include <sys/malloc.h>
 #include <sys/mount.h>
 #include <sys/proc.h>
 #include <sys/signalvar.h>

Index: src/sys/arch/sh3/sh3/vm_machdep.c
diff -u src/sys/arch/sh3/sh3/vm_machdep.c:1.83 src/sys/arch/sh3/sh3/vm_machdep.c:1.84
--- src/sys/arch/sh3/sh3/vm_machdep.c:1.83	Fri Oct  6 11:53:27 2023
+++ src/sys/arch/sh3/sh3/vm_machdep.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: vm_machdep.c,v 1.83 2023/10/06 11:53:27 skrll Exp $	*/
+/*	$NetBSD: vm_machdep.c,v 1.84 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc. All rights reserved.
@@ -81,14 +81,13 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.83 2023/10/06 11:53:27 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.84 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_kstack_debug.h"
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/proc.h>
-#include <sys/malloc.h>
 #include <sys/vnode.h>
 #include <sys/buf.h>
 #include <sys/core.h>

Index: src/sys/arch/shark/isa/isadma_machdep.c
diff -u src/sys/arch/shark/isa/isadma_machdep.c:1.17 src/sys/arch/shark/isa/isadma_machdep.c:1.18
--- src/sys/arch/shark/isa/isadma_machdep.c:1.17	Fri Sep 21 14:21:58 2012
+++ src/sys/arch/shark/isa/isadma_machdep.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: isadma_machdep.c,v 1.17 2012/09/21 14:21:58 matt Exp $	*/
+/*	$NetBSD: isadma_machdep.c,v 1.18 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.17 2012/09/21 14:21:58 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_machdep.c,v 1.18 2023/12/20 15:34:45 thorpej Exp $");
 
 #define ISA_DMA_STATS
 
@@ -39,7 +39,6 @@ __KERNEL_RCSID(0, "$NetBSD: isadma_machd
 #include <sys/systm.h>
 #include <sys/syslog.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 #include <sys/mbuf.h>
 

Index: src/sys/arch/shark/ofw/chipsfb_ofbus.c
diff -u src/sys/arch/shark/ofw/chipsfb_ofbus.c:1.5 src/sys/arch/shark/ofw/chipsfb_ofbus.c:1.6
--- src/sys/arch/shark/ofw/chipsfb_ofbus.c:1.5	Wed Jan 27 03:10:21 2021
+++ src/sys/arch/shark/ofw/chipsfb_ofbus.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: chipsfb_ofbus.c,v 1.5 2021/01/27 03:10:21 thorpej Exp $ */
+/*	$NetBSD: chipsfb_ofbus.c,v 1.6 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*
  * Copyright (c) 2011 Michael Lorenz
@@ -31,13 +31,12 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: chipsfb_ofbus.c,v 1.5 2021/01/27 03:10:21 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: chipsfb_ofbus.c,v 1.6 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/buf.h>
 #include <sys/bus.h>
 #include <uvm/uvm.h>

Index: src/sys/arch/shark/ofw/vga_ofbus.c
diff -u src/sys/arch/shark/ofw/vga_ofbus.c:1.17 src/sys/arch/shark/ofw/vga_ofbus.c:1.18
--- src/sys/arch/shark/ofw/vga_ofbus.c:1.17	Wed Jan 27 03:10:21 2021
+++ src/sys/arch/shark/ofw/vga_ofbus.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: vga_ofbus.c,v 1.17 2021/01/27 03:10:21 thorpej Exp $ */
+/* $NetBSD: vga_ofbus.c,v 1.18 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,13 +28,12 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vga_ofbus.c,v 1.17 2021/01/27 03:10:21 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vga_ofbus.c,v 1.18 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 #include <sys/kauth.h>
 

Index: src/sys/arch/shark/shark/autoconf.c
diff -u src/sys/arch/shark/shark/autoconf.c:1.21 src/sys/arch/shark/shark/autoconf.c:1.22
--- src/sys/arch/shark/shark/autoconf.c:1.21	Fri Jun 16 18:17:41 2017
+++ src/sys/arch/shark/shark/autoconf.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.21 2017/06/16 18:17:41 jdolecek Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.22 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*
  * Copyright (c) 1994-1998 Mark Brinicombe.
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.21 2017/06/16 18:17:41 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.22 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_md.h"
 
@@ -55,7 +55,6 @@ __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v
 #include <sys/conf.h>
 #include <sys/intr.h>
 #include <sys/kernel.h>
-#include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
 

Index: src/sys/arch/vax/vax/autoconf.c
diff -u src/sys/arch/vax/vax/autoconf.c:1.100 src/sys/arch/vax/vax/autoconf.c:1.101
--- src/sys/arch/vax/vax/autoconf.c:1.100	Thu Mar  3 06:28:26 2022
+++ src/sys/arch/vax/vax/autoconf.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.100 2022/03/03 06:28:26 riastradh Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.101 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.100 2022/03/03 06:28:26 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.101 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_cputype.h"
@@ -40,7 +40,6 @@ __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v
 #include <sys/buf.h>
 #include <sys/bufq.h>
 #include <sys/conf.h>
-#include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
 

Index: src/sys/arch/vax/vax/ctu.c
diff -u src/sys/arch/vax/vax/ctu.c:1.38 src/sys/arch/vax/vax/ctu.c:1.39
--- src/sys/arch/vax/vax/ctu.c:1.38	Fri Jun  2 08:51:47 2023
+++ src/sys/arch/vax/vax/ctu.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: ctu.c,v 1.38 2023/06/02 08:51:47 andvar Exp $ */
+/*	$NetBSD: ctu.c,v 1.39 2023/12/20 15:34:45 thorpej Exp $ */
 /*
  * Copyright (c) 1996 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ctu.c,v 1.38 2023/06/02 08:51:47 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ctu.c,v 1.39 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -47,7 +47,6 @@ __KERNEL_RCSID(0, "$NetBSD: ctu.c,v 1.38
 #include <sys/fcntl.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 
 #include <machine/rsp.h>

Index: src/sys/arch/vax/vax/ka88.c
diff -u src/sys/arch/vax/vax/ka88.c:1.21 src/sys/arch/vax/vax/ka88.c:1.22
--- src/sys/arch/vax/vax/ka88.c:1.21	Thu Mar  3 06:28:26 2022
+++ src/sys/arch/vax/vax/ka88.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: ka88.c,v 1.21 2022/03/03 06:28:26 riastradh Exp $	*/
+/*	$NetBSD: ka88.c,v 1.22 2023/12/20 15:34:45 thorpej Exp $	*/
 
 /*
  * Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ka88.c,v 1.21 2022/03/03 06:28:26 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ka88.c,v 1.22 2023/12/20 15:34:45 thorpej Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -43,7 +43,6 @@ __KERNEL_RCSID(0, "$NetBSD: ka88.c,v 1.2
 #include <sys/cpu.h>
 #include <sys/device.h>
 #include <sys/kernel.h>
-#include <sys/malloc.h>
 #include <sys/lwp.h>
 
 #include <machine/nexus.h>

Index: src/sys/arch/vax/vax/sgmap.c
diff -u src/sys/arch/vax/vax/sgmap.c:1.20 src/sys/arch/vax/vax/sgmap.c:1.21
--- src/sys/arch/vax/vax/sgmap.c:1.20	Sun Dec  3 00:49:46 2023
+++ src/sys/arch/vax/vax/sgmap.c	Wed Dec 20 15:34:45 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: sgmap.c,v 1.20 2023/12/03 00:49:46 thorpej Exp $ */
+/* $NetBSD: sgmap.c,v 1.21 2023/12/20 15:34:45 thorpej Exp $ */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,14 +31,13 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sgmap.c,v 1.20 2023/12/03 00:49:46 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sgmap.c,v 1.21 2023/12/20 15:34:45 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/bus.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
-#include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
 

Index: src/sys/arch/vax/vsa/leds.c
diff -u src/sys/arch/vax/vsa/leds.c:1.10 src/sys/arch/vax/vsa/leds.c:1.11
--- src/sys/arch/vax/vsa/leds.c:1.10	Mon Sep  3 16:29:28 2018
+++ src/sys/arch/vax/vsa/leds.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: leds.c,v 1.10 2018/09/03 16:29:28 riastradh Exp $	*/
+/*	$NetBSD: leds.c,v 1.11 2023/12/20 15:34:46 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -34,14 +34,13 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: leds.c,v 1.10 2018/09/03 16:29:28 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: leds.c,v 1.11 2023/12/20 15:34:46 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/cpu.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 
 #include <machine/sid.h>

Index: src/sys/arch/vax/vsa/ncr.c
diff -u src/sys/arch/vax/vsa/ncr.c:1.50 src/sys/arch/vax/vsa/ncr.c:1.51
--- src/sys/arch/vax/vsa/ncr.c:1.50	Sun Mar 22 20:27:47 2020
+++ src/sys/arch/vax/vsa/ncr.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: ncr.c,v 1.50 2020/03/22 20:27:47 ragge Exp $	*/
+/*	$NetBSD: ncr.c,v 1.51 2023/12/20 15:34:46 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ncr.c,v 1.50 2020/03/22 20:27:47 ragge Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ncr.c,v 1.51 2023/12/20 15:34:46 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -52,7 +52,6 @@ __KERNEL_RCSID(0, "$NetBSD: ncr.c,v 1.50
 #include <sys/device.h>
 #include <sys/errno.h>
 #include <sys/kernel.h>
-#include <sys/malloc.h>
 #include <sys/proc.h>
 
 #include <dev/scsipi/scsi_all.h>

Index: src/sys/arch/vax/vsa/vsbus_dma.c
diff -u src/sys/arch/vax/vsa/vsbus_dma.c:1.17 src/sys/arch/vax/vsa/vsbus_dma.c:1.18
--- src/sys/arch/vax/vsa/vsbus_dma.c:1.17	Mon Dec 12 18:22:32 2022
+++ src/sys/arch/vax/vsa/vsbus_dma.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: vsbus_dma.c,v 1.17 2022/12/12 18:22:32 jakllsch Exp $ */
+/* $NetBSD: vsbus_dma.c,v 1.18 2023/12/20 15:34:46 thorpej Exp $ */
 
 /*-
  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vsbus_dma.c,v 1.17 2022/12/12 18:22:32 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vsbus_dma.c,v 1.18 2023/12/20 15:34:46 thorpej Exp $");
 
 #define _VAX_BUS_DMA_PRIVATE
 
@@ -39,7 +39,6 @@ __KERNEL_RCSID(0, "$NetBSD: vsbus_dma.c,
 #include <sys/systm.h>
 #include <sys/bus.h>
 #include <sys/cpu.h>
-#include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
 

Index: src/sys/arch/xen/xen/xenmem.c
diff -u src/sys/arch/xen/xen/xenmem.c:1.4 src/sys/arch/xen/xen/xenmem.c:1.5
--- src/sys/arch/xen/xen/xenmem.c:1.4	Fri Sep  2 05:09:49 2022
+++ src/sys/arch/xen/xen/xenmem.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: xenmem.c,v 1.4 2022/09/02 05:09:49 kre Exp $ */
+/* $NetBSD: xenmem.c,v 1.5 2023/12/20 15:34:46 thorpej Exp $ */
 /*
  * Copyright (c) 2022 Manuel Bouyer.
  *
@@ -25,11 +25,10 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xenmem.c,v 1.4 2022/09/02 05:09:49 kre Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xenmem.c,v 1.5 2023/12/20 15:34:46 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/malloc.h>
 #include <sys/extent.h>
 #include <sys/kmem.h>
 #include <uvm/uvm_physseg.h>

Index: src/sys/arch/zaurus/dev/ztp.c
diff -u src/sys/arch/zaurus/dev/ztp.c:1.16 src/sys/arch/zaurus/dev/ztp.c:1.17
--- src/sys/arch/zaurus/dev/ztp.c:1.16	Sat Aug  7 16:19:08 2021
+++ src/sys/arch/zaurus/dev/ztp.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: ztp.c,v 1.16 2021/08/07 16:19:08 thorpej Exp $	*/
+/*	$NetBSD: ztp.c,v 1.17 2023/12/20 15:34:46 thorpej Exp $	*/
 /* $OpenBSD: zts.c,v 1.9 2005/04/24 18:55:49 uwe Exp $ */
 
 /*
@@ -18,7 +18,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ztp.c,v 1.16 2021/08/07 16:19:08 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ztp.c,v 1.17 2023/12/20 15:34:46 thorpej Exp $");
 
 #include "lcd.h"
 #include "w100lcd.h"
@@ -27,7 +27,6 @@ __KERNEL_RCSID(0, "$NetBSD: ztp.c,v 1.16
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/kernel.h>
 #include <sys/callout.h>
 

Index: src/sys/arch/zaurus/zaurus/autoconf.c
diff -u src/sys/arch/zaurus/zaurus/autoconf.c:1.16 src/sys/arch/zaurus/zaurus/autoconf.c:1.17
--- src/sys/arch/zaurus/zaurus/autoconf.c:1.16	Sat Mar 19 13:51:35 2022
+++ src/sys/arch/zaurus/zaurus/autoconf.c	Wed Dec 20 15:34:46 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.16 2022/03/19 13:51:35 hannken Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.17 2023/12/20 15:34:46 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.16 2022/03/19 13:51:35 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.17 2023/12/20 15:34:46 thorpej Exp $");
 
 #include "opt_md.h"
 
@@ -36,7 +36,6 @@ __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v
 #include <sys/device.h>
 #include <sys/disklabel.h>
 #include <sys/conf.h>
-#include <sys/malloc.h>
 #include <sys/vnode.h>
 #include <sys/fcntl.h>
 #include <sys/proc.h>

Reply via email to