mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-31 16:57:10 +00:00
Print some diagnostic messages for the PCI-ISA bridge,
if bootverbose > 0. Reviewed by: dfr
This commit is contained in:
parent
9a039a5fec
commit
8bae108840
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47548
@ -1,6 +1,6 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** $Id: pcisupport.c,v 1.114 1999/05/26 13:14:24 roger Exp $
|
||||
** $Id: pcisupport.c,v 1.115 1999/05/27 10:59:40 roger Exp $
|
||||
**
|
||||
** Device driver for DEC/INTEL PCI chipsets.
|
||||
**
|
||||
@ -1027,10 +1027,17 @@ isab_probe(device_t dev)
|
||||
return ENXIO;
|
||||
}
|
||||
|
||||
static int
|
||||
isab_attach(device_t dev)
|
||||
{
|
||||
chipset_attach(dev, device_get_unit(dev));
|
||||
return bus_generic_attach(dev);
|
||||
}
|
||||
|
||||
static device_method_t isab_methods[] = {
|
||||
/* Device interface */
|
||||
DEVMETHOD(device_probe, isab_probe),
|
||||
DEVMETHOD(device_attach, bus_generic_attach),
|
||||
DEVMETHOD(device_attach, isab_attach),
|
||||
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
||||
DEVMETHOD(device_suspend, bus_generic_suspend),
|
||||
DEVMETHOD(device_resume, bus_generic_resume),
|
||||
|
Loading…
Reference in New Issue
Block a user