remove unneeded includes
authorjsg <jsg@openbsd.org>
Sun, 26 May 2024 10:01:01 +0000 (10:01 +0000)
committerjsg <jsg@openbsd.org>
Sun, 26 May 2024 10:01:01 +0000 (10:01 +0000)
sys/dev/ata/ata.c
sys/dev/ata/ata_wdc.c
sys/dev/ata/atascsi.c
sys/dev/ata/wd.c
sys/dev/atapiscsi/atapiscsi.c

index 6940aba..1cf2a24 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ata.c,v 1.36 2017/12/30 20:46:59 guenther Exp $      */
+/*      $OpenBSD: ata.c,v 1.37 2024/05/26 10:01:01 jsg Exp $      */
 /*      $NetBSD: ata.c,v 1.9 1999/04/15 09:41:09 bouyer Exp $      */
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
-#include <sys/stat.h>
-#include <sys/malloc.h>
-#include <sys/device.h>
-#include <sys/syslog.h>
 #include <sys/pool.h>
 
-#include <machine/bus.h>
-
 #include <dev/ata/atareg.h>
 #include <dev/ata/atavar.h>
 #include <dev/ic/wdcreg.h>
index d165d92..f273109 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ata_wdc.c,v 1.52 2018/11/02 09:59:36 fcambus Exp $   */
+/*      $OpenBSD: ata_wdc.c,v 1.53 2024/05/26 10:01:01 jsg Exp $       */
 /*     $NetBSD: ata_wdc.c,v 1.21 1999/08/09 09:43:11 bouyer Exp $      */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/stat.h>
 #include <sys/buf.h>
-#include <sys/malloc.h>
 #include <sys/device.h>
 #include <sys/disklabel.h>
 #include <sys/disk.h>
-#include <sys/syslog.h>
 
-#include <machine/intr.h>
 #include <machine/bus.h>
 
 #include <dev/ata/atavar.h>
index 029354e..24d60fe 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: atascsi.c,v 1.154 2024/05/13 01:15:50 jsg Exp $ */
+/*     $OpenBSD: atascsi.c,v 1.155 2024/05/26 10:01:01 jsg Exp $ */
 
 /*
  * Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/buf.h>
-#include <sys/kernel.h>
 #include <sys/malloc.h>
 #include <sys/device.h>
-#include <sys/queue.h>
 #include <sys/pool.h>
 
 #include <scsi/scsi_all.h>
index 6a89ea3..549f49c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: wd.c,v 1.130 2022/10/23 14:39:19 krw Exp $ */
+/*     $OpenBSD: wd.c,v 1.131 2024/05/26 10:01:01 jsg Exp $ */
 /*     $NetBSD: wd.c,v 1.193 1999/02/28 17:15:27 explorer Exp $ */
 
 /*
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/kernel.h>
 #include <sys/conf.h>
 #include <sys/fcntl.h>
 #include <sys/stat.h>
-#include <sys/ioctl.h>
-#include <sys/mutex.h>
 #include <sys/buf.h>
 #include <sys/uio.h>
 #include <sys/malloc.h>
@@ -74,7 +71,6 @@
 #include <sys/disk.h>
 #include <sys/syslog.h>
 #include <sys/timeout.h>
-#include <sys/vnode.h>
 #include <sys/dkio.h>
 #include <sys/reboot.h>
 
index 5a2d58f..19e11a7 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: atapiscsi.c,v 1.120 2022/04/16 19:19:58 naddy Exp $     */
+/*      $OpenBSD: atapiscsi.c,v 1.121 2024/05/26 10:01:01 jsg Exp $     */
 
 /*
  * This code is derived from code with the copyright below.
  *
  */
 
-
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
-#include <sys/buf.h>
-#include <sys/disklabel.h>
-#include <sys/malloc.h>
-#include <sys/reboot.h>
-#include <sys/ioctl.h>
 #include <sys/timeout.h>
 #include <scsi/scsi_all.h>
-#include <scsi/scsi_disk.h>
 #include <scsi/scsi_tape.h>
 #include <scsi/scsiconf.h>
 
@@ -134,9 +127,6 @@ void  wdc_atapi_reset_2(struct channel_softc *, struct wdc_xfer *,
 void  wdc_atapi_tape_done(struct channel_softc *, struct wdc_xfer *,
        int, struct atapi_return_args *);
 
-struct atapiscsi_softc;
-struct atapiscsi_xfer;
-
 int    atapiscsi_match(struct device *, void *, void *);
 void   atapiscsi_attach(struct device *, struct device *, void *);
 int    atapiscsi_activate(struct device *, int);