Do not include pcib.h, which only existed in my development tree, and do

not use struct pcib_softc when struct apb_softc would be correct.

Spotted by:	jake
Pointy hat to:	tmm
This commit is contained in:
Thomas Moestl 2001-12-30 16:14:33 +00:00
parent 64b158ad3c
commit db8a25bd07

View File

@ -50,7 +50,6 @@
#include <pci/pcivar.h>
#include <pci/pcireg.h>
#include <pci/pcib.h>
#include "pcib_if.h"
@ -111,7 +110,7 @@ static device_method_t apb_methods[] = {
static driver_t apb_driver = {
"pcib",
apb_methods,
sizeof(struct pcib_softc),
sizeof(struct apb_softc),
};
static devclass_t apb_devclass;