mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Add id_next field to struct isa_device,this does not
breaks anything and needed only in userconfig to make dset work for now..
This commit is contained in:
parent
1475d9283e
commit
341dbf8041
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7030
1 changed files with 2 additions and 1 deletions
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91
|
||||
* $Id: isa_device.h,v 1.16 1994/10/25 23:06:16 se Exp $
|
||||
* $Id: isa_device.h,v 1.17 1994/11/03 04:15:04 jkh Exp $
|
||||
*/
|
||||
|
||||
#ifndef _I386_ISA_ISA_DEVICE_H_
|
||||
|
@ -75,6 +75,7 @@ struct isa_device {
|
|||
u_int id_ri_flags; /* flags for register_intr() */
|
||||
int id_reconfig; /* hot eject device support (such as PCMCIA) */
|
||||
int id_enabled; /* is device enabled */
|
||||
struct isa_device *id_next; /* used in isa_devlist in userconfig() */
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue