Add PNP info to PCI attachment of cas driver
Move module delcaration to be after device table. The PNP_INFO must follow the module declaration. Reviewed by: imp, chuck Submitted by: Lakhan Shiva Kamireddy <lakhanshiva@gmail.com> Sponsored by: Google, Inc. (GSoC 2018) Pull Request: https://github.com/bsdimp/freebsd/pull/5
This commit is contained in:
parent
ae00e67228
commit
63c017dae5
@ -2603,10 +2603,6 @@ static driver_t cas_pci_driver = {
|
||||
sizeof(struct cas_softc)
|
||||
};
|
||||
|
||||
DRIVER_MODULE(cas, pci, cas_pci_driver, cas_devclass, 0, 0);
|
||||
DRIVER_MODULE(miibus, cas, miibus_driver, miibus_devclass, 0, 0);
|
||||
MODULE_DEPEND(cas, pci, 1, 1, 1);
|
||||
|
||||
static const struct cas_pci_dev {
|
||||
uint32_t cpd_devid;
|
||||
uint8_t cpd_revid;
|
||||
@ -2619,6 +2615,12 @@ static const struct cas_pci_dev {
|
||||
{ 0, 0, 0, NULL }
|
||||
};
|
||||
|
||||
DRIVER_MODULE(cas, pci, cas_pci_driver, cas_devclass, 0, 0);
|
||||
MODULE_PNP_INFO("W32:vendor/device", pci, cas, cas_pci_devlist,
|
||||
sizeof(cas_pci_devlist[0]), nitems(cas_pci_devlist) - 1);
|
||||
DRIVER_MODULE(miibus, cas, miibus_driver, miibus_devclass, 0, 0);
|
||||
MODULE_DEPEND(cas, pci, 1, 1, 1);
|
||||
|
||||
static int
|
||||
cas_pci_probe(device_t dev)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user