From fa9a6175a66034bde8657162bf246faee6c389f5 Mon Sep 17 00:00:00 2001 From: mycroft Date: Sat, 12 Mar 1994 03:28:16 +0000 Subject: [PATCH] Update for new config(8). --- sys/arch/i386/isa/isa_device.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/i386/isa/isa_device.h b/sys/arch/i386/isa/isa_device.h index 02758b36920e..ec2d5a9e5726 100644 --- a/sys/arch/i386/isa/isa_device.h +++ b/sys/arch/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.7 1993/08/28 00:13:55 brezak Exp $ + * $Id: isa_device.h,v 1.8 1994/03/12 03:28:16 mycroft Exp $ */ /* @@ -52,7 +52,8 @@ struct isa_device { int id_unit; /* unit number */ int id_flags; /* flags */ int id_physid; /* eg. scsi id if needed */ - int id_masunit; /* for biotab_dktp, the master unit number */ + struct isa_device *id_parent; + unsigned *id_mask; /* for devices which use an IRQ */ int id_alive; /* device is present */ }; @@ -69,7 +70,6 @@ struct isa_driver { char *name; /* device name */ }; -extern struct isa_device isa_devtab_bio[], isa_devtab_tty[], isa_devtab_net[], - isa_devtab_null[], isa_subdev[]; +extern struct isa_device isa_devtab[]; extern struct isa_device *find_isadev(/* table, driver, unit*/);