remove unneeded includes in arch/i386
authorjsg <jsg@openbsd.org>
Mon, 30 Jan 2023 10:49:04 +0000 (10:49 +0000)
committerjsg <jsg@openbsd.org>
Mon, 30 Jan 2023 10:49:04 +0000 (10:49 +0000)
ok krw@ miod@

64 files changed:
sys/arch/i386/i386/acpi_machdep.c
sys/arch/i386/i386/acpiapm.c
sys/arch/i386/i386/amdmsr.c
sys/arch/i386/i386/apic.c
sys/arch/i386/i386/apm.c
sys/arch/i386/i386/autoconf.c
sys/arch/i386/i386/bios.c
sys/arch/i386/i386/bus_dma.c
sys/arch/i386/i386/bus_space.c
sys/arch/i386/i386/conf.c
sys/arch/i386/i386/cpu.c
sys/arch/i386/i386/db_interface.c
sys/arch/i386/i386/db_mp.c
sys/arch/i386/i386/db_trace.c
sys/arch/i386/i386/esm.c
sys/arch/i386/i386/est.c
sys/arch/i386/i386/gdt.c
sys/arch/i386/i386/hibernate_machdep.c
sys/arch/i386/i386/i686_mem.c
sys/arch/i386/i386/ioapic.c
sys/arch/i386/i386/ipifuncs.c
sys/arch/i386/i386/k1x-pstate.c
sys/arch/i386/i386/k6_mem.c
sys/arch/i386/i386/lapic.c
sys/arch/i386/i386/longrun.c
sys/arch/i386/i386/machdep.c
sys/arch/i386/i386/mainbus.c
sys/arch/i386/i386/mem.c
sys/arch/i386/i386/mpbios.c
sys/arch/i386/i386/nvram.c
sys/arch/i386/i386/pctr.c
sys/arch/i386/i386/pmap.c
sys/arch/i386/i386/pmapae.c
sys/arch/i386/i386/powernow-k7.c
sys/arch/i386/i386/powernow-k8.c
sys/arch/i386/i386/process_machdep.c
sys/arch/i386/i386/rbus_machdep.c
sys/arch/i386/i386/sys_machdep.c
sys/arch/i386/i386/trap.c
sys/arch/i386/i386/vm_machdep.c
sys/arch/i386/i386/wscons_machdep.c
sys/arch/i386/isa/clock.c
sys/arch/i386/isa/isapnp_machdep.c
sys/arch/i386/isa/joy.c
sys/arch/i386/isa/joy_isapnp.c
sys/arch/i386/isa/npx.c
sys/arch/i386/pci/agp_machdep.c
sys/arch/i386/pci/ali1543.c
sys/arch/i386/pci/amd756.c
sys/arch/i386/pci/glxsb.c
sys/arch/i386/pci/gscpcib.c
sys/arch/i386/pci/ichpcib.c
sys/arch/i386/pci/opti82c558.c
sys/arch/i386/pci/opti82c700.c
sys/arch/i386/pci/pchb.c
sys/arch/i386/pci/pci_addr_fixup.c
sys/arch/i386/pci/pci_bus_fixup.c
sys/arch/i386/pci/pci_intr_fixup.c
sys/arch/i386/pci/piix.c
sys/arch/i386/pci/rccosb4.c
sys/arch/i386/pci/sis85c503.c
sys/arch/i386/pci/vga_post.c
sys/arch/i386/pci/via8231.c
sys/arch/i386/pci/via82c586.c

index c368b21..74dba69 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acpi_machdep.c,v 1.86 2022/12/06 01:56:43 cheloha Exp $       */
+/*     $OpenBSD: acpi_machdep.c,v 1.87 2023/01/30 10:49:04 jsg Exp $   */
 /*
  * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com>
  *
 #include <machine/acpiapm.h>
 
 #include <machine/cpuvar.h>
+#include <machine/npx.h>
 
 #include <dev/acpi/acpivar.h>
 #include <dev/acpi/acpidev.h>
 #include <dev/isa/isareg.h>
 
-#include <machine/apmvar.h>
-
 #include "apm.h"
 #include "isa.h"
 #include "ioapic.h"
index 18bcfc6..d11faa1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acpiapm.c,v 1.2 2020/04/03 08:24:52 mpi Exp $ */
+/*     $OpenBSD: acpiapm.c,v 1.3 2023/01/30 10:49:04 jsg Exp $ */
 /*
  * Copyright (c) 2007 Ted Unangst <tedu@openbsd.org>
  *
@@ -17,8 +17,6 @@
 
 #include <sys/param.h>
 #include <machine/conf.h>
-#include <sys/event.h>
-
 
 int (*acpiapm_open)(dev_t, int, int, struct proc *);
 int (*acpiapm_close)(dev_t, int, int, struct proc *);
index 8d01a79..e1e809d 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: amdmsr.c,v 1.11 2022/02/21 10:24:28 mpi Exp $        */
+/*      $OpenBSD: amdmsr.c,v 1.12 2023/01/30 10:49:04 jsg Exp $        */
 
 /*
  * Copyright (c) 2008 Marc Balmer <mbalmer@openbsd.org>
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/gpio.h>
 #include <sys/ioctl.h>
 #include <sys/conf.h>
-#include <machine/amdmsr.h>
 
-#include <machine/bus.h>
+#include <machine/amdmsr.h>
 #include <machine/cpufunc.h>
 
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcivar.h>
-#include <dev/pci/pcidevs.h>
-
 #ifdef APERTURE
 static int amdmsr_open_cnt;
 extern int allowaperture;
index a0ae3e9..041932d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: apic.c,v 1.6 2009/08/13 13:24:48 kettenis Exp $       */
+/*     $OpenBSD: apic.c,v 1.7 2023/01/30 10:49:04 jsg Exp $    */
 /* $NetBSD: apic.c,v 1.1.2.2 2000/02/21 18:51:00 sommerfeld Exp $ */
 
 /*-
@@ -36,7 +36,6 @@
 #include <sys/systm.h>
 
 #include <machine/i82489reg.h>
-#include <machine/i82489var.h>
 #include <machine/apicvar.h>
 
 void
index bf6087c..7cd1f27 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: apm.c,v 1.128 2022/12/06 01:56:44 cheloha Exp $       */
+/*     $OpenBSD: apm.c,v 1.129 2023/01/30 10:49:04 jsg Exp $   */
 
 /*-
  * Copyright (c) 1998-2001 Michael Shalayeff. All rights reserved.
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/signalvar.h>
 #include <sys/kernel.h>
 #include <sys/kthread.h>
 #include <sys/rwlock.h>
 #include <sys/sysctl.h>
-#include <sys/malloc.h>
 #include <sys/clockintr.h>
 #include <sys/device.h>
 #include <sys/fcntl.h>
-#include <sys/ioctl.h>
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/event.h>
 
 #include <machine/conf.h>
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/gdt.h>
-#include <machine/psl.h>
 
 #include <dev/isa/isareg.h>
-#include <i386/isa/isa_machdep.h>
-#include <i386/isa/nvram.h>
-#include <dev/isa/isavar.h>
 #include <dev/wscons/wsdisplayvar.h>
 
 #include <machine/acpiapm.h>
index 6ddeee4..db7970f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: autoconf.c,v 1.108 2022/09/08 10:22:06 kn Exp $       */
+/*     $OpenBSD: autoconf.c,v 1.109 2023/01/30 10:49:04 jsg Exp $      */
 /*     $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $   */
 
 /*-
 #include <sys/systm.h>
 #include <sys/proc.h>
 #include <sys/user.h>
-#include <sys/buf.h>
-#include <sys/disklabel.h>
-#include <sys/conf.h>
 #include <sys/reboot.h>
 #include <sys/device.h>
-#include <sys/socket.h>
-#include <sys/socketvar.h>
 #include <sys/hibernate.h>
 
 #include <net/if.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/pte.h>
-#include <machine/cpu.h>
 #include <machine/gdt.h>
 #include <machine/biosvar.h>
 
-#include <dev/cons.h>
-
 #include "ioapic.h"
 
 #include "acpi.h"
 #include <machine/i82093var.h>
 #endif
 
-#if NACPI > 0
-#include <dev/acpi/acpivar.h>
-#endif
-
 #ifdef MULTIPROCESSOR
 #include <machine/mpbiosvar.h>
 #endif
index b0c8ea6..f0cfa72 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bios.c,v 1.127 2022/02/21 10:24:28 mpi Exp $  */
+/*     $OpenBSD: bios.c,v 1.128 2023/01/30 10:49:04 jsg Exp $  */
 
 /*
  * Copyright (c) 1997-2001 Michael Shalayeff
@@ -30,7 +30,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/device.h>
 #include <sys/errno.h>
 #include <sys/malloc.h>
 #include <dev/cons.h>
 #include <stand/boot/bootarg.h>
 
-#include <machine/cpu.h>
-#include <machine/pio.h>
-#include <machine/cpufunc.h>
 #include <machine/conf.h>
 #include <machine/gdt.h>
-#include <machine/pcb.h>
 #include <machine/biosvar.h>
-#include <machine/apmvar.h>
 #include <machine/mpbiosvar.h>
 #include <machine/smbiosvar.h>
 
@@ -59,9 +53,6 @@
 
 #include <dev/pci/pcivar.h>
 
-#include <dev/acpi/acpireg.h>
-#include <dev/acpi/acpivar.h>
-
 #include "apm.h"
 #include "acpi.h"
 #include "mpbios.h"
@@ -70,9 +61,8 @@
 
 #include "com.h"
 #if NCOM > 0
-#include <sys/tty.h>
+#include <sys/termios.h>
 #include <dev/ic/comvar.h>
-#include <dev/ic/comreg.h>
 #endif
 
 #include "softraid.h"
index 0412ea6..70b16c5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bus_dma.c,v 1.35 2015/12/17 17:16:04 tedu Exp $       */
+/*     $OpenBSD: bus_dma.c,v 1.36 2023/01/30 10:49:04 jsg Exp $        */
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
  * All rights reserved.
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/proc.h>
 
 #include <machine/bus.h>
 
-#include <dev/isa/isareg.h>
-#include <dev/isa/isavar.h>
-
 #include <uvm/uvm_extern.h>
 
 int    _bus_dmamap_load_buffer(bus_dma_tag_t, bus_dmamap_t, void *,
index 10dee17..56dd533 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bus_space.c,v 1.9 2015/04/25 21:31:24 guenther Exp $ */
+/*     $OpenBSD: bus_space.c,v 1.10 2023/01/30 10:49:04 jsg Exp $ */
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -62,9 +62,6 @@
  */
 
 #include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/malloc.h>
-#include <sys/extent.h>
 
 #include <machine/bus.h>
 
index 4c7365f..dab1da6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: conf.c,v 1.174 2022/09/02 20:06:56 miod Exp $ */
+/*     $OpenBSD: conf.c,v 1.175 2023/01/30 10:49:04 jsg Exp $  */
 /*     $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $       */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/buf.h>
 #include <sys/device.h>
 #include <sys/disklabel.h>
-#include <sys/ioctl.h>
 #include <sys/tty.h>
 #include <sys/vnode.h>
 
index 5f6d94e..1baf2c7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cpu.c,v 1.110 2022/12/06 01:56:44 cheloha Exp $       */
+/*     $OpenBSD: cpu.c,v 1.111 2023/01/30 10:49:04 jsg Exp $   */
 /* $NetBSD: cpu.c,v 1.1.2.7 2000/06/26 02:04:05 sommerfeld Exp $ */
 
 /*-
@@ -72,7 +72,6 @@
 #include <sys/timeout.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/malloc.h>
 #include <sys/memrange.h>
 #include <sys/atomic.h>
 
@@ -84,9 +83,7 @@
 #include <machine/cpufunc.h>
 #include <machine/cpuvar.h>
 #include <machine/pmap.h>
-#include <machine/vmparam.h>
 #include <machine/mpbiosvar.h>
-#include <machine/npx.h>
 #include <machine/pcb.h>
 #include <machine/specialreg.h>
 #include <machine/segments.h>
@@ -94,7 +91,6 @@
 #include <machine/pio.h>
 
 #if NLAPIC > 0
-#include <machine/apicvar.h>
 #include <machine/i82489reg.h>
 #include <machine/i82489var.h>
 #endif
index e1700e1..aa6d615 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_interface.c,v 1.44 2022/04/14 19:47:11 naddy Exp $ */
+/*     $OpenBSD: db_interface.c,v 1.45 2023/01/30 10:49:05 jsg Exp $   */
 /*     $NetBSD: db_interface.c,v 1.22 1996/05/03 19:42:00 christos Exp $       */
 
 /*
  * Interface to new debugger.
  */
 #include <sys/param.h>
-#include <sys/reboot.h>
 #include <sys/systm.h>
-#include <sys/mutex.h>
-
-#include <uvm/uvm_extern.h>
 
 #include <dev/cons.h>
 
 #include <machine/db_machdep.h>
 
-#include <ddb/db_sym.h>
 #include <ddb/db_command.h>
 #include <ddb/db_extern.h>
-#include <ddb/db_access.h>
 #include <ddb/db_output.h>
 #include <ddb/db_run.h>
 #include <ddb/db_var.h>
index d3c576b..83ac7c3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_mp.c,v 1.13 2020/09/11 09:27:10 mpi Exp $  */
+/*     $OpenBSD: db_mp.c,v 1.14 2023/01/30 10:49:05 jsg Exp $  */
 
 /*
  * Copyright (c) 2003, 2004 Andreas Gunnarsson <andreas@openbsd.org>
@@ -23,8 +23,6 @@
 
 #include <machine/db_machdep.h>
 
-#include <ddb/db_output.h>
-
 struct db_mutex ddb_mp_mutex = DB_MUTEX_INITIALIZER;
 
 volatile int ddb_state = DDB_STATE_NOT_RUNNING;        /* protected by ddb_mp_mutex */
index cdd3103..8242374 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_trace.c,v 1.42 2020/05/14 06:58:54 mpi Exp $       */
+/*     $OpenBSD: db_trace.c,v 1.43 2023/01/30 10:49:05 jsg Exp $       */
 /*     $NetBSD: db_trace.c,v 1.18 1996/05/03 19:42:01 christos Exp $   */
 
 /*
@@ -38,7 +38,6 @@
 #include <ddb/db_sym.h>
 #include <ddb/db_access.h>
 #include <ddb/db_variables.h>
-#include <ddb/db_output.h>
 #include <ddb/db_interface.h>
 
 /*
index 6d79e89..51535d0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: esm.c,v 1.63 2022/04/16 19:32:54 naddy Exp $ */
+/*     $OpenBSD: esm.c,v 1.64 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org>
@@ -20,7 +20,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
-#include <sys/kernel.h>
 #include <sys/malloc.h>
 #include <sys/timeout.h>
 #include <sys/queue.h>
index bf98ef8..972d3bc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: est.c,v 1.54 2021/08/17 19:44:01 tb Exp $ */
+/*     $OpenBSD: est.c,v 1.55 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 2003 Michael Eriksson.
  * All rights reserved.
@@ -67,7 +67,6 @@
 
 #if NACPICPU > 0
 #include <dev/acpi/acpidev.h>
-#include <dev/acpi/acpivar.h>
 #endif
 
 /* Convert MHz and mV into IDs for passing to the MSR. */
index 9482aa4..67438af 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gdt.c,v 1.43 2018/06/22 13:21:14 bluhm Exp $  */
+/*     $OpenBSD: gdt.c,v 1.44 2023/01/30 10:49:05 jsg Exp $    */
 /*     $NetBSD: gdt.c,v 1.28 2002/12/14 09:38:50 junyoung Exp $        */
 
 /*-
 #include <sys/systm.h>
 #include <sys/mutex.h>
 
-#include <uvm/uvm_extern.h>
-
-#include <machine/cpu.h>
 #include <machine/gdt.h>
-#include <machine/pcb.h>
 #include <machine/tss.h>
 
 struct mutex gdt_lock_store = MUTEX_INITIALIZER(IPL_HIGH);
index 0e902cf..2e1be18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hibernate_machdep.c,v 1.60 2023/01/17 23:12:37 jsg Exp $      */
+/*     $OpenBSD: hibernate_machdep.c,v 1.61 2023/01/30 10:49:05 jsg Exp $      */
 
 /*
  * Copyright (c) 2011 Mike Larkin <mlarkin@openbsd.org>
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/buf.h>
-#include <sys/conf.h>
 #include <sys/device.h>
 #include <sys/disk.h>
 #include <sys/disklabel.h>
 #include <sys/hibernate.h>
-#include <sys/timeout.h>
-#include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
-#include <uvm/uvm_pmemrange.h>
 
 #include <machine/biosvar.h>
 #include <machine/hibernate.h>
index 8ac7832..985062c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: i686_mem.c,v 1.19 2018/07/30 14:19:12 kettenis Exp $ */
+/* $OpenBSD: i686_mem.c,v 1.20 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 1999 Michael Smith <msmith@freebsd.org>
  * All rights reserved.
  */
 
 #include <sys/param.h>
-#include <sys/kernel.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
 #include <sys/memrange.h>
 
 #include <machine/cpufunc.h>
-#include <machine/intr.h>
 #include <machine/specialreg.h>
 
 /*
index 012f578..33e617c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ioapic.c,v 1.43 2022/02/21 10:24:28 mpi Exp $ */
+/*     $OpenBSD: ioapic.c,v 1.44 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: ioapic.c,v 1.7 2003/07/14 22:32:40 lukem Exp $ */
 
 /*-
 #include <machine/bus.h>
 #include <machine/psl.h>
 
-#include <uvm/uvm_extern.h>
-
 #include <machine/i82093reg.h>
 #include <machine/i82093var.h>
 
 #include <machine/i82489reg.h>
 #include <machine/i82489var.h>
 
-#include <machine/pmap.h>
-
 #include <machine/mpbiosvar.h>
 
-#include "isa.h"
-
 /*
  * XXX locking
  */
index aada9fb..17a00c2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ipifuncs.c,v 1.33 2020/09/13 11:53:16 jsg Exp $       */
+/*     $OpenBSD: ipifuncs.c,v 1.34 2023/01/30 10:49:05 jsg Exp $       */
 /* $NetBSD: ipifuncs.c,v 1.1.2.3 2000/06/26 02:04:06 sommerfeld Exp $ */
 
 /*-
 #include "npx.h"
 
 #include <sys/param.h>
-#include <sys/device.h>
 #include <sys/memrange.h>
 #include <sys/systm.h>
 
-#include <uvm/uvm_extern.h>
-
 #include <machine/cpufunc.h>
 #include <machine/cpuvar.h>
 #include <machine/intr.h>
 #include <machine/atomic.h>
-#include <machine/i82093var.h>
 #include <machine/db_machdep.h>
-#include <machine/mplock.h>
-#include <machine/vmmvar.h>
 
 void i386_ipi_nop(struct cpu_info *);
 void i386_ipi_halt(struct cpu_info *);
index 89a46b3..d280133 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: k1x-pstate.c,v 1.13 2021/08/11 18:46:11 tb Exp $ */
+/*     $OpenBSD: k1x-pstate.c,v 1.14 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 2011 Bryan Steele <brynet@gmail.com>
  *
@@ -29,7 +29,6 @@
 #include <sys/malloc.h>
 #include <sys/sysctl.h>
 
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/bus.h>
 
@@ -37,7 +36,6 @@
 
 #if NACPICPU > 0
 #include <dev/acpi/acpidev.h>
-#include <dev/acpi/acpivar.h>
 #endif
 
 extern int setperf_prio;
index 408ea72..6aef4ad 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: k6_mem.c,v 1.13 2018/07/30 14:19:12 kettenis Exp $ */
+/* $OpenBSD: k6_mem.c,v 1.14 2023/01/30 10:49:05 jsg Exp $ */
 /*-
  * Copyright (c) 1999 Brian Fundakowski Feldman
  * All rights reserved.
  */
 
 #include <sys/param.h>
-#include <sys/kernel.h>
 #include <sys/systm.h>
-#include <sys/ioccom.h>
 #include <sys/malloc.h>
 #include <sys/memrange.h>
 
 #include <machine/cpufunc.h>
-#include <machine/specialreg.h>
 
 /*
  * A K6-2 MTRR is defined as the highest 15 bits having the address, the next
index f7a6ef5..3671b31 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: lapic.c,v 1.53 2022/12/06 01:56:44 cheloha Exp $      */
+/*     $OpenBSD: lapic.c,v 1.54 2023/01/30 10:49:05 jsg Exp $  */
 /* $NetBSD: lapic.c,v 1.1.2.8 2000/02/23 06:10:50 sommerfeld Exp $ */
 
 /*-
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/cpuvar.h>
 #include <machine/pmap.h>
-#include <machine/vmparam.h>
 #include <machine/mpbiosvar.h>
-#include <machine/pcb.h>
 #include <machine/specialreg.h>
 #include <machine/segments.h>
 
index 5d1579d..ffea45b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: longrun.c,v 1.17 2018/07/30 14:19:12 kettenis Exp $ */
+/* $OpenBSD: longrun.c,v 1.18 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 2003 Ted Unangst
  * Copyright (c) 2001 Tamotsu Hattori
@@ -30,7 +30,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/sysctl.h>
 #include <sys/timeout.h>
 
index b911a97..14949a6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.662 2023/01/11 02:49:34 cheloha Exp $   */
+/*     $OpenBSD: machdep.c,v 1.663 2023/01/30 10:49:05 jsg Exp $       */
 /*     $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $    */
 
 /*-
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/signalvar.h>
-#include <sys/kernel.h>
 #include <sys/proc.h>
 #include <sys/user.h>
 #include <sys/exec.h>
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/timeout.h>
 #include <sys/malloc.h>
-#include <sys/mbuf.h>
 #include <sys/msgbuf.h>
 #include <sys/mount.h>
-#include <sys/vnode.h>
 #include <sys/device.h>
 #include <sys/extent.h>
 #include <sys/sysctl.h>
 #include <machine/cpu_full.h>
 #include <machine/cpufunc.h>
 #include <machine/cpuvar.h>
-#include <machine/gdt.h>
 #include <machine/kcore.h>
 #include <machine/pio.h>
 #include <machine/psl.h>
-#include <machine/reg.h>
 #include <machine/specialreg.h>
 #include <machine/biosvar.h>
 #include <machine/pte.h>
 #endif /* MULTIPROCESSOR */
 
 #include <dev/isa/isareg.h>
-#include <dev/isa/isavar.h>
 #include <dev/ic/i8042reg.h>
-#include <dev/ic/mc146818reg.h>
 #include <i386/isa/isa_machdep.h>
-#include <i386/isa/nvram.h>
 
 #include "acpi.h"
 #if NACPI > 0
 
 #ifdef DDB
 #include <machine/db_machdep.h>
-#include <ddb/db_access.h>
-#include <ddb/db_sym.h>
 #include <ddb/db_extern.h>
 #endif
 
@@ -147,13 +136,6 @@ extern struct proc *npxproc;
 #endif
 
 #include "bios.h"
-#include "com.h"
-
-#if NCOM > 0
-#include <sys/termios.h>
-#include <dev/ic/comreg.h>
-#include <dev/ic/comvar.h>
-#endif /* NCOM > 0 */
 
 #ifdef HIBERNATE
 #include <machine/hibernate_var.h>
@@ -286,11 +268,6 @@ int allowaperture = 0;
 int has_rdrand;
 int has_rdseed;
 
-#include "pvbus.h"
-#if NPVBUS > 0
-#include <dev/pv/pvvar.h>
-#endif
-
 void   winchip_cpu_setup(struct cpu_info *);
 void   amd_family5_setperf_setup(struct cpu_info *);
 void   amd_family5_setup(struct cpu_info *);
index 85e6254..62c6ca3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mainbus.c,v 1.60 2022/02/21 10:24:28 mpi Exp $        */
+/*     $OpenBSD: mainbus.c,v 1.61 2023/01/30 10:49:05 jsg Exp $        */
 /*     $NetBSD: mainbus.c,v 1.21 1997/06/06 23:14:20 thorpej Exp $     */
 
 /*
@@ -47,8 +47,7 @@
 
 #include "pci.h"
 #include "eisa.h"
-#include "isa.h"
-#include "apm.h"
+#include "isadma.h"
 #include "bios.h"
 #include "acpi.h"
 #include "ipmi.h"
index 903b3ad..174020c 100644 (file)
@@ -1,5 +1,5 @@
 /*     $NetBSD: mem.c,v 1.31 1996/05/03 19:42:19 christos Exp $        */
-/*     $OpenBSD: mem.c,v 1.54 2018/02/19 08:59:52 mpi Exp $ */
+/*     $OpenBSD: mem.c,v 1.55 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 1988 University of Utah.
  * Copyright (c) 1982, 1986, 1990, 1993
 #include <sys/filio.h>
 #include <sys/systm.h>
 #include <sys/uio.h>
-#include <sys/ioccom.h>
 #include <sys/malloc.h>
 #include <sys/memrange.h>
-#include <sys/fcntl.h>
 #include <sys/rwlock.h>
 
-#include <machine/cpu.h>
 #include <machine/conf.h>
 
 #include <uvm/uvm_extern.h>
index 6bdcd2b..25e07d8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mpbios.c,v 1.44 2022/02/21 10:24:28 mpi Exp $ */
+/*     $OpenBSD: mpbios.c,v 1.45 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: mpbios.c,v 1.2 2002/10/01 12:56:57 fvdl Exp $  */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/specialreg.h>
-#include <machine/cputypes.h>
 #include <machine/cpuvar.h>
 #include <machine/bus.h>
 #include <machine/biosvar.h>
index 516ef15..c68ced2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nvram.c,v 1.6 2016/03/07 05:32:47 naddy Exp $ */
+/*     $OpenBSD: nvram.c,v 1.7 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2004 Joshua Stein <jcs@openbsd.org>
 #include <sys/systm.h>
 #include <sys/uio.h>
 #include <sys/fcntl.h>
-#include <sys/conf.h>
 
 #include <dev/ic/mc146818reg.h>
-#include <i386/isa/nvram.h>
 
 /* checksum is calculated over bytes 2 to 31 and stored in byte 32 */
 #define NVRAM_CSUM_START       (MC_NVRAM_START + 2)
index 88c5b5e..29be98f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pctr.c,v 1.30 2017/09/08 05:36:51 deraadt Exp $       */
+/*     $OpenBSD: pctr.c,v 1.31 2023/01/30 10:49:05 jsg Exp $   */
 
 /*
  * Pentium performance counter driver for OpenBSD.
 #include <sys/param.h>
 #include <sys/errno.h>
 #include <sys/fcntl.h>
-#include <sys/ioccom.h>
 #include <sys/systm.h>
 
-#include <machine/cputypes.h>
-#include <machine/psl.h>
 #include <machine/pctr.h>
 #include <machine/cpu.h>
 #include <machine/specialreg.h>
index 4abec69..63b7e10 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pmap.c,v 1.219 2022/06/29 14:24:29 dv Exp $   */
+/*     $OpenBSD: pmap.c,v 1.220 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD: pmap.c,v 1.91 2000/06/02 17:46:37 thorpej Exp $        */
 
 /*
 #include <sys/systm.h>
 #include <sys/atomic.h>
 #include <sys/proc.h>
-#include <sys/malloc.h>
 #include <sys/pool.h>
 #include <sys/user.h>
-#include <sys/kernel.h>
 #include <sys/mutex.h>
 
 #include <uvm/uvm.h>
 
-#include <machine/cpu.h>
 #include <machine/specialreg.h>
-#include <machine/gdt.h>
 
-#include <dev/isa/isareg.h>
 #include <sys/msgbuf.h>
 #include <stand/boot/bootarg.h>
 
index f3fc242..9acf704 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pmapae.c,v 1.67 2022/06/29 14:24:29 dv Exp $  */
+/*     $OpenBSD: pmapae.c,v 1.68 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2006-2008 Michael Shalayeff
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/atomic.h>
-#include <sys/proc.h>
-#include <sys/malloc.h>
 #include <sys/pool.h>
 #include <sys/user.h>
-#include <sys/kernel.h>
 #include <sys/mutex.h>
 
 #include <uvm/uvm.h>
 
-#include <machine/cpu.h>
 #include <machine/specialreg.h>
-#include <machine/gdt.h>
 
 #include <dev/isa/isareg.h>
 #include <i386/isa/isa_machdep.h>
-#include <sys/msgbuf.h>
-#include <stand/boot/bootarg.h>
 
 #include "ksyms.h"
 
index 8c29f07..e5626b0 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: powernow-k7.c,v 1.43 2018/07/30 14:19:12 kettenis Exp $ */
+/* $OpenBSD: powernow-k7.c,v 1.44 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2004 Martin Végiard.
@@ -33,7 +33,6 @@
 #include <sys/malloc.h>
 #include <sys/sysctl.h>
 
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/bus.h>
 
@@ -44,7 +43,6 @@
 
 #if NACPICPU > 0
 #include <dev/acpi/acpidev.h>
-#include <dev/acpi/acpivar.h>
 #endif
 
 #define BIOS_START                     0xe0000
index 17185ce..33c6007 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: powernow-k8.c,v 1.34 2018/07/04 02:06:15 mlarkin Exp $ */
+/*     $OpenBSD: powernow-k8.c,v 1.35 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2004 Martin Végiard.
@@ -35,7 +35,6 @@
 #include <dev/isa/isareg.h>
 #include <i386/isa/isa_machdep.h>
 
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/bus.h>
 
@@ -43,7 +42,6 @@
 
 #if NACPICPU > 0
 #include <dev/acpi/acpidev.h>
-#include <dev/acpi/acpivar.h>
 #endif
 
 #define BIOS_START                     0xe0000
index 911f06a..65a9e0c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: process_machdep.c,v 1.29 2018/07/09 19:20:29 guenther Exp $   */
+/*     $OpenBSD: process_machdep.c,v 1.30 2023/01/30 10:49:05 jsg Exp $        */
 /*     $NetBSD: process_machdep.c,v 1.22 1996/05/03 19:42:25 christos Exp $    */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/time.h>
-#include <sys/kernel.h>
 #include <sys/proc.h>
 #include <sys/user.h>
-#include <sys/vnode.h>
 #include <sys/ptrace.h>
 
 #include <machine/psl.h>
index e123322..8193867 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rbus_machdep.c,v 1.27 2010/09/22 02:28:37 jsg Exp $ */
+/*     $OpenBSD: rbus_machdep.c,v 1.28 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: rbus_machdep.c,v 1.2 1999/10/15 06:43:06 haya Exp $    */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/extent.h>
 
-#include <uvm/uvm_extern.h>
-
 #include <machine/bus.h>
 #include <dev/cardbus/rbus.h>
 
index aa1b611..1f35ab2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.40 2018/07/09 19:20:29 guenther Exp $       */
+/*     $OpenBSD: sys_machdep.c,v 1.41 2023/01/30 10:49:05 jsg Exp $    */
 /*     $NetBSD: sys_machdep.c,v 1.28 1996/05/03 19:42:29 christos Exp $        */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/ioctl.h>
-#include <sys/time.h>
 #include <sys/proc.h>
-#include <sys/signalvar.h>
 #include <sys/user.h>
-#include <sys/uio.h>
-#include <sys/kernel.h>
-#include <sys/mtio.h>
-#include <sys/buf.h>
-#include <sys/signal.h>
-#include <sys/malloc.h>
 
 #include <sys/mount.h>
 #include <sys/syscallargs.h>
 
-#include <uvm/uvm_extern.h>
-
-#include <machine/cpu.h>
-#include <machine/cpufunc.h>
-#include <machine/gdt.h>
 #include <machine/psl.h>
-#include <machine/reg.h>
 #include <machine/sysarch.h>
 
 extern struct vm_map *kernel_map;
index bdbc90a..9751eb9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: trap.c,v 1.158 2023/01/18 05:06:44 deraadt Exp $      */
+/*     $OpenBSD: trap.c,v 1.159 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD: trap.c,v 1.95 1996/05/05 06:50:02 mycroft Exp $        */
 
 /*-
 #include <sys/proc.h>
 #include <sys/signalvar.h>
 #include <sys/user.h>
-#include <sys/acct.h>
-#include <sys/kernel.h>
 #include <sys/signal.h>
 #include <sys/syscall.h>
 #include <sys/syscall_mi.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/cpu.h>
 #include <machine/cpufunc.h>
 #include <machine/psl.h>
-#include <machine/reg.h>
 #include <machine/trap.h>
 #ifdef DDB
 #include <machine/db_machdep.h>
 #endif
 
-#include <sys/exec.h>
-
 #include "isa.h"
-#include "npx.h"
 
 int upageflttrap(struct trapframe *, uint32_t);
 int kpageflttrap(struct trapframe *, uint32_t);
index d887a9d..1b2624b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vm_machdep.c,v 1.72 2022/02/21 19:18:52 kettenis Exp $        */
+/*     $OpenBSD: vm_machdep.c,v 1.73 2023/01/30 10:49:05 jsg Exp $     */
 /*     $NetBSD: vm_machdep.c,v 1.61 1996/05/03 19:42:35 christos Exp $ */
 
 /*-
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/proc.h>
-#include <sys/signalvar.h>
-#include <sys/malloc.h>
-#include <sys/vnode.h>
 #include <sys/buf.h>
 #include <sys/user.h>
-#include <sys/exec.h>
-#include <sys/ptrace.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/cpu.h>
-#include <machine/gdt.h>
-#include <machine/reg.h>
-#include <machine/specialreg.h>
-
 #include "npx.h"
 
 /*
index d7cc165..bcdc714 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: wscons_machdep.c,v 1.19 2016/03/07 05:32:47 naddy Exp $ */
+/*     $OpenBSD: wscons_machdep.c,v 1.20 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2001 Aaron Campbell
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/device.h>
-#include <sys/extent.h>
 
 #include <machine/bus.h>
 
@@ -62,7 +59,6 @@
 #include <dev/ic/i8042reg.h>
 #include <dev/ic/pckbcvar.h>
 #endif
-#include "pckbd.h"
 #include "ukbd.h"
 #if (NUKBD > 0)
 #include <dev/usb/ukbdvar.h>
index 7b0b60d..0f0b70e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: clock.c,v 1.62 2022/12/06 01:56:44 cheloha Exp $      */
+/*     $OpenBSD: clock.c,v 1.63 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD: clock.c,v 1.39 1996/05/12 23:11:54 mycroft Exp $       */
 
 /*-
@@ -90,13 +90,10 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 #include <sys/time.h>
 #include <sys/kernel.h>
 #include <sys/clockintr.h>
-#include <sys/device.h>
-#include <sys/stdint.h>
 #include <sys/timeout.h>
 #include <sys/timetc.h>
 #include <sys/mutex.h>
 
-#include <machine/cpu.h>
 #include <machine/intr.h>
 #include <machine/pio.h>
 #include <machine/cpufunc.h>
index e2a0179..08413ee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: isapnp_machdep.c,v 1.4 2008/06/26 05:42:11 ray Exp $  */
+/*     $OpenBSD: isapnp_machdep.c,v 1.5 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD: isapnp_machdep.c,v 1.5 1997/10/04 17:32:30 thorpej Exp $       */
 
 /*-
@@ -76,8 +76,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
-#include <sys/malloc.h>
 
 #include <machine/bus.h>
 
index 204a500..97d7bf0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: joy.c,v 1.16 2018/07/30 14:19:12 kettenis Exp $       */
+/*     $OpenBSD: joy.c,v 1.17 2023/01/30 10:49:05 jsg Exp $    */
 /*     $NetBSD: joy.c,v 1.3 1996/05/05 19:46:15 christos Exp $ */
 
 /*-
 #include <sys/device.h>
 #include <sys/errno.h>
 
-#include <machine/cpu.h>
 #include <machine/pio.h>
 #include <machine/cpufunc.h>
 #include <machine/joystick.h>
 #include <machine/conf.h>
 
-#include <dev/isa/isavar.h>
 #include <dev/isa/isareg.h>
 #include <dev/ic/i8253reg.h>
 #include <i386/isa/joyreg.h>
index d75c7ed..17fe1eb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: joy_isapnp.c,v 1.8 2022/02/21 10:24:28 mpi Exp $      */
+/*     $OpenBSD: joy_isapnp.c,v 1.9 2023/01/30 10:49:05 jsg Exp $      */
 /*     $NetBSD: joy.c,v 1.3 1996/05/05 19:46:15 christos Exp $ */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/errno.h>
 
 #include <machine/cpu.h>
 #include <machine/pio.h>
-#include <machine/cpufunc.h>
-#include <machine/joystick.h>
-#include <machine/conf.h>
 
 #include <dev/isa/isavar.h>
-#include <dev/isa/isareg.h>
-#include <dev/ic/i8253reg.h>
 #include <i386/isa/joyreg.h>
 
 int            joy_isapnp_probe(struct device *, void *, void *);
index b318d3a..5e354d5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: npx.c,v 1.73 2022/02/21 10:24:28 mpi Exp $    */
+/*     $OpenBSD: npx.c,v 1.74 2023/01/30 10:49:05 jsg Exp $    */
 /*     $NetBSD: npx.c,v 1.57 1996/05/12 23:12:24 mycroft Exp $ */
 
 #if 0
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/conf.h>
 #include <sys/proc.h>
 #include <sys/signalvar.h>
 #include <sys/user.h>
-#include <sys/ioctl.h>
 #include <sys/device.h>
 
 #include <uvm/uvm_extern.h>
 
-#include <machine/cpu.h>
 #include <machine/intr.h>
 #include <machine/npx.h>
 #include <machine/pio.h>
@@ -61,7 +58,6 @@
 #include <machine/specialreg.h>
 #include <machine/i8259.h>
 
-#include <dev/isa/isareg.h>
 #include <dev/isa/isavar.h>
 
 /*
index b144465..14738d5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: agp_machdep.c,v 1.20 2014/11/16 12:30:57 deraadt Exp $        */
+/*     $OpenBSD: agp_machdep.c,v 1.21 2023/01/30 10:49:05 jsg Exp $    */
 
 /*
  * Copyright (c) 2008 - 2009 Owain G. Ainsworth <oga@openbsd.org>
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
-#include <sys/rwlock.h>
 
 #include <dev/pci/pcivar.h>
 #include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 #include <dev/pci/agpvar.h>
 
 #include <uvm/uvm_extern.h>
index df22167..977833c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ali1543.c,v 1.5 2022/08/29 06:08:03 jsg Exp $ */
+/*     $OpenBSD: ali1543.c,v 1.6 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: ali1543.c,v 1.2 2001/09/13 14:00:52 tshiozak Exp $     */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/errno.h>
-#include <sys/device.h>
-#include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/piixvar.h>
index 39faed2..042836b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: amd756.c,v 1.5 2008/06/26 05:42:11 ray Exp $  */
+/*     $OpenBSD: amd756.c,v 1.6 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD$        */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/amd756reg.h>
index 119159d..2b9f39c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: glxsb.c,v 1.41 2022/02/21 10:24:28 mpi Exp $  */
+/*     $OpenBSD: glxsb.c,v 1.42 2023/01/30 10:49:05 jsg Exp $  */
 
 /*
  * Copyright (c) 2006 Tom Cosgrove <tom@openbsd.org>
@@ -38,7 +38,6 @@
 
 #ifdef CRYPTO
 #include <crypto/cryptodev.h>
-#include <crypto/aes.h>
 #include <crypto/xform.h>
 #include <crypto/cryptosoft.h>
 #endif
index 1aa2c53..af9afa0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gscpcib.c,v 1.7 2022/02/21 10:24:28 mpi Exp $ */
+/*     $OpenBSD: gscpcib.c,v 1.8 2023/01/30 10:49:05 jsg Exp $ */
 /*
  * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
  *
@@ -25,7 +25,6 @@
 #include <sys/systm.h>
 #include <sys/device.h>
 #include <sys/gpio.h>
-#include <sys/kernel.h>
 
 #include <machine/bus.h>
 
index 0bf1c04..6c9c1e8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ichpcib.c,v 1.31 2022/02/21 10:24:28 mpi Exp $        */
+/*     $OpenBSD: ichpcib.c,v 1.32 2023/01/30 10:49:05 jsg Exp $        */
 /*
  * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
  *
@@ -36,9 +36,6 @@
 
 #include <dev/pci/ichreg.h>
 
-#include <machine/cpu.h>
-#include <machine/cpufunc.h>
-
 struct ichpcib_softc {
        struct device sc_dev;
 
index 0ff5cec..dc961ac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: opti82c558.c,v 1.8 2008/06/26 05:42:11 ray Exp $      */
+/*     $OpenBSD: opti82c558.c,v 1.9 2023/01/30 10:49:05 jsg Exp $      */
 /*     $NetBSD: opti82c558.c,v 1.2 2000/07/18 11:24:09 soda Exp $      */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/opti82c558reg.h>
index 833673b..5512ca9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: opti82c700.c,v 1.8 2008/06/26 05:42:11 ray Exp $      */
+/*     $OpenBSD: opti82c700.c,v 1.9 2023/01/30 10:49:05 jsg Exp $      */
 /*     $NetBSD: opti82c700.c,v 1.2 2000/07/18 11:07:20 soda Exp $      */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/opti82c700reg.h>
index dc628e9..edae2fb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pchb.c,v 1.93 2022/02/21 10:24:28 mpi Exp $ */
+/*     $OpenBSD: pchb.c,v 1.94 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: pchb.c,v 1.65 2007/08/15 02:26:13 markd Exp $  */
 
 /*
@@ -59,7 +59,6 @@
 #include <sys/systm.h>
 #include <sys/device.h>
 #include <sys/timeout.h>
-#include <sys/rwlock.h>
 
 #include <machine/bus.h>
 
index 1757109..27e3ca9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pci_addr_fixup.c,v 1.25 2014/05/04 20:09:15 sf Exp $  */
+/*     $OpenBSD: pci_addr_fixup.c,v 1.26 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: pci_addr_fixup.c,v 1.7 2000/08/03 20:10:45 nathanw Exp $       */
 
 /*-
@@ -30,8 +30,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/malloc.h>
-#include <sys/kernel.h>
-#include <sys/device.h>
 #include <sys/extent.h>
 
 #include <uvm/uvm_extern.h>
@@ -40,7 +38,6 @@
 
 #include <dev/pci/pcireg.h>
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 
index fc1e58e..3e21d81 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pci_bus_fixup.c,v 1.9 2006/08/18 22:18:18 kettenis Exp $      */
+/*     $OpenBSD: pci_bus_fixup.c,v 1.10 2023/01/30 10:49:05 jsg Exp $  */
 /*     $NetBSD: pci_bus_fixup.c,v 1.1 1999/11/17 07:32:58 thorpej Exp $  */
 
 /*
@@ -32,8 +32,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
-#include <sys/device.h>
 
 #include <machine/bus.h>
 
index b14b9b1..b58789b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pci_intr_fixup.c,v 1.63 2021/03/06 09:20:50 jsg Exp $ */
+/*     $OpenBSD: pci_intr_fixup.c,v 1.64 2023/01/30 10:49:05 jsg Exp $ */
 /*     $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/malloc.h>
 #include <sys/queue.h>
 #include <sys/device.h>
 
 #include <machine/bus.h>
 #include <machine/intr.h>
-#include <machine/i8259.h>
 #include <machine/i82093var.h>
 
 #include <dev/pci/pcireg.h>
index 9b0705b..d1692e1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: piix.c,v 1.11 2015/09/01 06:01:24 deraadt Exp $       */
+/*     $OpenBSD: piix.c,v 1.12 2023/01/30 10:49:05 jsg Exp $   */
 /*     $NetBSD: piix.c,v 1.1 1999/11/17 01:21:20 thorpej Exp $ */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/piixreg.h>
index 4768c7a..a268dd3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rccosb4.c,v 1.6 2015/09/01 06:01:24 deraadt Exp $     */
+/*     $OpenBSD: rccosb4.c,v 1.7 2023/01/30 10:49:05 jsg Exp $ */
 
 /*
  * Copyright (c) 2004,2005 Michael Shalayeff
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/piixvar.h>
index 4b4e75c..604186d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sis85c503.c,v 1.8 2008/06/26 05:42:11 ray Exp $       */
+/*     $OpenBSD: sis85c503.c,v 1.9 2023/01/30 10:49:05 jsg Exp $       */
 /*     $NetBSD: sis85c503.c,v 1.2 2000/07/18 11:24:09 soda Exp $       */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/sis85c503reg.h>
index d9b38a4..79b786a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: vga_post.c,v 1.10 2021/01/03 02:29:28 jmatthew Exp $ */
+/* $OpenBSD: vga_post.c,v 1.11 2023/01/30 10:49:05 jsg Exp $ */
 /* $NetBSD: vga_post.c,v 1.12 2009/03/15 21:32:36 cegger Exp $ */
 
 /*-
@@ -31,7 +31,6 @@
  */
 
 #include <sys/param.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <uvm/uvm_extern.h>
index c7c85cf..8fa11a4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: via8231.c,v 1.8 2008/06/26 05:42:11 ray Exp $ */
+/*     $OpenBSD: via8231.c,v 1.9 2023/01/30 10:49:05 jsg Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -66,7 +66,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 #include <sys/malloc.h>
 
 #include <machine/intr.h>
index 848b51d..24891bb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: via82c586.c,v 1.11 2008/06/26 05:42:11 ray Exp $      */
+/*     $OpenBSD: via82c586.c,v 1.12 2023/01/30 10:49:05 jsg Exp $      */
 /*     $NetBSD: via82c586.c,v 1.2 2000/07/18 11:24:09 soda Exp $       */
 
 /*-
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/device.h>
 
 #include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/pci/pcivar.h>
-#include <dev/pci/pcireg.h>
-#include <dev/pci/pcidevs.h>
 
 #include <i386/pci/pcibiosvar.h>
 #include <i386/pci/via82c586reg.h>