1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fix the problem that caused the boot to fail when modules were loaded.

Real braino, confuses two different softc types, I wonder how this
could ever work :(
This commit is contained in:
Søren Schmidt 2000-02-27 12:41:07 +00:00
parent 8a1d9101f2
commit cb66e8d4e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57533

View File

@ -686,7 +686,7 @@ static driver_t ata_pci_driver = {
sizeof(struct ata_pci_softc),
};
DRIVER_MODULE(atapci, pci, ata_pci_driver, ata_devclass, 0, 0);
DRIVER_MODULE(atapci, pci, ata_pci_driver, ata_pci_devclass, 0, 0);
static int
ata_pcisub_probe(device_t dev)
@ -723,7 +723,7 @@ static driver_t ata_pcisub_driver = {
sizeof(struct ata_softc),
};
DRIVER_MODULE(ata, atapci, ata_pcisub_driver, ata_pci_devclass, 0, 0);
DRIVER_MODULE(ata, atapci, ata_pcisub_driver, ata_devclass, 0, 0);
#endif
static int