summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-09-10 23:31:13 +0000
committerbde <bde@FreeBSD.org>1996-09-10 23:31:13 +0000
commit4b1a7c107d12dcaa90f1733628ef92b9daabf17d (patch)
tree694ee7f35a28ef2be59bd7a989e9073882d81ecd /sys
parent059cd92beecd7b436c11af3f9ec6dd0b48b2eef5 (diff)
downloadFreeBSD-src-4b1a7c107d12dcaa90f1733628ef92b9daabf17d.zip
FreeBSD-src-4b1a7c107d12dcaa90f1733628ef92b9daabf17d.tar.gz
Removed more devconf leftovers.
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/isa/isa.c3
-rw-r--r--sys/dev/eisa/eisaconf.h4
-rw-r--r--sys/dev/pci/pci.c25
-rw-r--r--sys/dev/pci/pcivar.h17
-rw-r--r--sys/i386/eisa/eisaconf.h4
-rw-r--r--sys/i386/isa/aha1542.c3
-rw-r--r--sys/i386/isa/isa.c3
-rw-r--r--sys/i386/isa/isa_device.h5
-rw-r--r--sys/pci/pci.c25
-rw-r--r--sys/pci/pcivar.h17
-rw-r--r--sys/scsi/scsiconf.c3
-rw-r--r--sys/sys/sysctl.h6
12 files changed, 15 insertions, 100 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index f03e18b..0fa508e 100644
--- a/sys/amd64/isa/isa.c
+++ b/sys/amd64/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.71 1996/06/25 20:30:36 bde Exp $
+ * $Id: isa.c,v 1.72 1996/09/06 23:07:45 phk Exp $
*/
/*
@@ -51,7 +51,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/sysctl.h>
#include <sys/buf.h>
#include <sys/syslog.h>
#include <sys/malloc.h>
diff --git a/sys/dev/eisa/eisaconf.h b/sys/dev/eisa/eisaconf.h
index 985a3ad..0634a4f 100644
--- a/sys/dev/eisa/eisaconf.h
+++ b/sys/dev/eisa/eisaconf.h
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: eisaconf.h,v 1.10 1996/09/06 23:06:59 phk Exp $
+ * $Id: eisaconf.h,v 1.11 1996/09/08 10:43:42 phk Exp $
*/
#ifndef _I386_EISA_EISACONF_H_
@@ -79,7 +79,7 @@ struct eisa_driver {
/* test whether device is present */
int (*attach) __P((struct eisa_device *));
/* setup driver for a device */
- int (*shutdown) __P((struct kern_devconf *, int));
+ int (*shutdown) __P((int));
/* Return the device to a safe
* state before shutdown
*/
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c
index db97c8b..e7d6f3d 100644
--- a/sys/dev/pci/pci.c
+++ b/sys/dev/pci/pci.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pci.c,v 1.53 1996/09/05 21:28:51 se Exp $
+** $Id: pci.c,v 1.54 1996/09/06 23:08:58 phk Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@@ -51,7 +51,6 @@
#include <sys/malloc.h>
#include <sys/errno.h>
#include <sys/kernel.h>
-#include <sys/sysctl.h>
#include <sys/proc.h> /* declaration of wakeup(), used by vm.h */
#include <vm/vm.h>
@@ -75,10 +74,6 @@
**========================================================
*/
-struct pci_devconf {
- struct pci_info pdc_pi;
-};
-
struct pcicb {
struct pcicb *pcicb_next;
struct pcicb *pcicb_up;
@@ -433,8 +428,6 @@ pci_bus_config (void)
struct pci_device *dvp;
- struct pci_devconf *pdcp;
-
/*
** first initialize the bridge (bus controller chip)
*/
@@ -644,22 +637,6 @@ pci_bus_config (void)
};
/*
- ** Allocate a devconf structure
- ** We should, and eventually will, set the
- ** parent pointer to a pci bus devconf structure,
- ** and arrange to set the state field dynamically.
- */
-
- pdcp = (struct pci_devconf *)
- malloc (sizeof (struct pci_devconf),M_DEVBUF,M_WAITOK);
- bzero(pdcp, sizeof(struct pci_devconf));
-
- pdcp -> pdc_pi.pi_bus = bus_no;
- pdcp -> pdc_pi.pi_device = device;
- pdcp -> pdc_pi.pi_func = func;
- pdcp -> pdc_pi.pi_unit = unit;
-
- /*
** attach device
** may produce additional log messages,
** i.e. when installing subdevices.
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index f8d2a95..61127e1 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcivar.h,v 1.11 1996/09/06 23:09:01 phk Exp $
+** $Id: pcivar.h,v 1.12 1996/09/08 10:44:14 phk Exp $
**
** Declarations for pci device drivers.
**
@@ -149,21 +149,6 @@ extern unsigned pci_maxdevice;
/*-----------------------------------------------------------------
**
-** The pci-devconf interface.
-**
-**-----------------------------------------------------------------
-*/
-
-struct pci_info {
- u_char pi_bus;
- u_char pi_device;
- u_char pi_func;
- u_char pi_dummy;
- u_char pi_unit;
-};
-
-/*-----------------------------------------------------------------
-**
** Map a pci device to physical and virtual memory.
**
** Entry selects the register in the pci configuration
diff --git a/sys/i386/eisa/eisaconf.h b/sys/i386/eisa/eisaconf.h
index 985a3ad..0634a4f 100644
--- a/sys/i386/eisa/eisaconf.h
+++ b/sys/i386/eisa/eisaconf.h
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: eisaconf.h,v 1.10 1996/09/06 23:06:59 phk Exp $
+ * $Id: eisaconf.h,v 1.11 1996/09/08 10:43:42 phk Exp $
*/
#ifndef _I386_EISA_EISACONF_H_
@@ -79,7 +79,7 @@ struct eisa_driver {
/* test whether device is present */
int (*attach) __P((struct eisa_device *));
/* setup driver for a device */
- int (*shutdown) __P((struct kern_devconf *, int));
+ int (*shutdown) __P((int));
/* Return the device to a safe
* state before shutdown
*/
diff --git a/sys/i386/isa/aha1542.c b/sys/i386/isa/aha1542.c
index bb28b93..3ccd125 100644
--- a/sys/i386/isa/aha1542.c
+++ b/sys/i386/isa/aha1542.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: aha1542.c,v 1.60 1996/07/20 22:02:44 joerg Exp $
+ * $Id: aha1542.c,v 1.61 1996/09/06 23:07:06 phk Exp $
*/
/*
@@ -341,7 +341,6 @@ static void ahaminphys __P((struct buf *bp));
static int aha_poll __P((struct aha_data *aha, struct scsi_xfer *xs,
struct aha_ccb *ccb));
static int ahaprobe __P((struct isa_device *dev));
-static void aha_registerdev __P((struct isa_device *id));
static int32_t aha_scsi_cmd __P((struct scsi_xfer *xs));
static timeout_t
aha_timeout;
diff --git a/sys/i386/isa/isa.c b/sys/i386/isa/isa.c
index f03e18b..0fa508e 100644
--- a/sys/i386/isa/isa.c
+++ b/sys/i386/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.71 1996/06/25 20:30:36 bde Exp $
+ * $Id: isa.c,v 1.72 1996/09/06 23:07:45 phk Exp $
*/
/*
@@ -51,7 +51,6 @@
#include <sys/param.h>
#include <sys/systm.h>
-#include <sys/sysctl.h>
#include <sys/buf.h>
#include <sys/syslog.h>
#include <sys/malloc.h>
diff --git a/sys/i386/isa/isa_device.h b/sys/i386/isa/isa_device.h
index 81e8565..4b3f7f9 100644
--- a/sys/i386/isa/isa_device.h
+++ b/sys/i386/isa/isa_device.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91
- * $Id: isa_device.h,v 1.31 1996/09/04 09:49:35 asami Exp $
+ * $Id: isa_device.h,v 1.32 1996/09/08 10:44:12 phk Exp $
*/
#ifndef _I386_ISA_ISA_DEVICE_H_
@@ -128,9 +128,6 @@ extern struct isa_device isa_devtab_net[];
extern struct isa_device isa_devtab_null[];
extern struct isa_device isa_devtab_tty[];
-struct kern_devconf;
-struct sysctl_req;
-
inthand_t
IDTVEC(fastintr0), IDTVEC(fastintr1),
IDTVEC(fastintr2), IDTVEC(fastintr3),
diff --git a/sys/pci/pci.c b/sys/pci/pci.c
index db97c8b..e7d6f3d 100644
--- a/sys/pci/pci.c
+++ b/sys/pci/pci.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pci.c,v 1.53 1996/09/05 21:28:51 se Exp $
+** $Id: pci.c,v 1.54 1996/09/06 23:08:58 phk Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@@ -51,7 +51,6 @@
#include <sys/malloc.h>
#include <sys/errno.h>
#include <sys/kernel.h>
-#include <sys/sysctl.h>
#include <sys/proc.h> /* declaration of wakeup(), used by vm.h */
#include <vm/vm.h>
@@ -75,10 +74,6 @@
**========================================================
*/
-struct pci_devconf {
- struct pci_info pdc_pi;
-};
-
struct pcicb {
struct pcicb *pcicb_next;
struct pcicb *pcicb_up;
@@ -433,8 +428,6 @@ pci_bus_config (void)
struct pci_device *dvp;
- struct pci_devconf *pdcp;
-
/*
** first initialize the bridge (bus controller chip)
*/
@@ -644,22 +637,6 @@ pci_bus_config (void)
};
/*
- ** Allocate a devconf structure
- ** We should, and eventually will, set the
- ** parent pointer to a pci bus devconf structure,
- ** and arrange to set the state field dynamically.
- */
-
- pdcp = (struct pci_devconf *)
- malloc (sizeof (struct pci_devconf),M_DEVBUF,M_WAITOK);
- bzero(pdcp, sizeof(struct pci_devconf));
-
- pdcp -> pdc_pi.pi_bus = bus_no;
- pdcp -> pdc_pi.pi_device = device;
- pdcp -> pdc_pi.pi_func = func;
- pdcp -> pdc_pi.pi_unit = unit;
-
- /*
** attach device
** may produce additional log messages,
** i.e. when installing subdevices.
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h
index f8d2a95..61127e1 100644
--- a/sys/pci/pcivar.h
+++ b/sys/pci/pcivar.h
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcivar.h,v 1.11 1996/09/06 23:09:01 phk Exp $
+** $Id: pcivar.h,v 1.12 1996/09/08 10:44:14 phk Exp $
**
** Declarations for pci device drivers.
**
@@ -149,21 +149,6 @@ extern unsigned pci_maxdevice;
/*-----------------------------------------------------------------
**
-** The pci-devconf interface.
-**
-**-----------------------------------------------------------------
-*/
-
-struct pci_info {
- u_char pi_bus;
- u_char pi_device;
- u_char pi_func;
- u_char pi_dummy;
- u_char pi_unit;
-};
-
-/*-----------------------------------------------------------------
-**
** Map a pci device to physical and virtual memory.
**
** Entry selects the register in the pci configuration
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c
index 2b8439f..60e747b 100644
--- a/sys/scsi/scsiconf.c
+++ b/sys/scsi/scsiconf.c
@@ -16,7 +16,7 @@
*
* New configuration setup: dufault@hda.com
*
- * $Id: scsiconf.c,v 1.62 1996/09/06 23:09:15 phk Exp $
+ * $Id: scsiconf.c,v 1.63 1996/09/08 10:44:16 phk Exp $
*/
#include "opt_scsi.h"
@@ -26,7 +26,6 @@
#include <sys/systm.h>
#include <sys/stat.h>
#include <sys/malloc.h>
-#include <sys/sysctl.h>
#include <sys/conf.h>
#ifdef PC98
#include <sys/device.h>
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index 273c5dc..fb998dd 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)sysctl.h 8.1 (Berkeley) 6/2/93
- * $Id: sysctl.h,v 1.42 1996/06/10 16:23:42 nate Exp $
+ * $Id: sysctl.h,v 1.43 1996/07/25 18:02:14 wollman Exp $
*/
#ifndef _SYS_SYSCTL_H_
@@ -296,8 +296,7 @@ int sysctl_handle_opaque SYSCTL_HANDLER_ARGS;
#define HW_DISKNAMES 8 /* strings: disk drive names */
#define HW_DISKSTATS 9 /* struct: diskstats[] */
#define HW_FLOATINGPT 10 /* int: has HW floating point? */
-#define HW_DEVCONF 11 /* node: device configuration */
-#define HW_MAXID 12 /* number of valid hw ids */
+#define HW_MAXID 11 /* number of valid hw ids */
#define CTL_HW_NAMES { \
{ 0, 0 }, \
@@ -311,7 +310,6 @@ int sysctl_handle_opaque SYSCTL_HANDLER_ARGS;
{ "disknames", CTLTYPE_STRUCT }, \
{ "diskstats", CTLTYPE_STRUCT }, \
{ "floatingpoint", CTLTYPE_INT }, \
- { "devconf", CTLTYPE_NODE }, \
}
/*
OpenPOWER on IntegriCloud