mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
GC isa_device->id_reconfig - it's not referenced anywhere anymore.
GC reconfig_isadev() - it's not used anymore.
This commit is contained in:
parent
3bd82a552f
commit
a8f8e0bd03
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56437
@ -3341,7 +3341,7 @@ lsdevtab(struct isa_device *dt)
|
||||
ffs(dt->id_irq) - 1, dt->id_drq, dt->id_maddr, dt->id_msize,
|
||||
/* dt->id_intr(by name), */ dt->id_unit, dt->id_flags,
|
||||
/* dt->id_scsiid, dt->id_alive, dt->id_ri_flags, */
|
||||
/* dt->id_reconfig, */ dt->id_enabled ? "Yes" : "No",
|
||||
dt->id_enabled ? "Yes" : "No",
|
||||
dt->id_conflicts ? "Yes" : "No");
|
||||
++lineno;
|
||||
}
|
||||
|
@ -315,11 +315,3 @@ haveseen_iobase(struct isa_device *dvp, int size)
|
||||
bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
|
||||
return res ? 0 : 1;
|
||||
}
|
||||
|
||||
void
|
||||
reconfig_isadev(isdp, mp)
|
||||
struct isa_device *isdp;
|
||||
u_int *mp;
|
||||
{
|
||||
printf("reconfig_isadev() called - FIXME!\n");
|
||||
}
|
||||
|
@ -75,7 +75,6 @@ struct isa_device {
|
||||
int id_alive; /* device is present */
|
||||
#define RI_FAST 1 /* fast interrupt handler */
|
||||
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 */
|
||||
int id_conflicts; /* we're allowed to conflict with things */
|
||||
struct isa_device *id_next; /* used in isa_devlist in userconfig() */
|
||||
@ -101,7 +100,6 @@ struct isa_driver {
|
||||
#ifdef _KERNEL
|
||||
|
||||
int haveseen_iobase __P((struct isa_device *dvp, int iosize));
|
||||
void reconfig_isadev __P((struct isa_device *isdp, u_int *mp));
|
||||
int isa_compat_nextid __P((void));
|
||||
|
||||
#endif
|
||||
|
@ -3368,7 +3368,7 @@ lsdevtab(struct isa_device *dt)
|
||||
ffs(dt->id_irq) - 1, dt->id_drq, dt->id_maddr, dt->id_msize,
|
||||
/* dt->id_intr(by name), */ dt->id_unit, dt->id_flags,
|
||||
/* dt->id_scsiid, dt->id_alive, dt->id_ri_flags, */
|
||||
/* dt->id_reconfig, */ dt->id_enabled ? "Yes" : "No",
|
||||
dt->id_enabled ? "Yes" : "No",
|
||||
dt->id_conflicts ? "Yes" : "No");
|
||||
++lineno;
|
||||
}
|
||||
|
@ -315,11 +315,3 @@ haveseen_iobase(struct isa_device *dvp, int size)
|
||||
bus_release_resource(dev, SYS_RES_IOPORT, rid, res);
|
||||
return res ? 0 : 1;
|
||||
}
|
||||
|
||||
void
|
||||
reconfig_isadev(isdp, mp)
|
||||
struct isa_device *isdp;
|
||||
u_int *mp;
|
||||
{
|
||||
printf("reconfig_isadev() called - FIXME!\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user