PR: 239143
Reported and tested by: Wes Maag <jwmaag@gmail.com> Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
2bc1470fec
commit
4aa27a3b56
@ -770,6 +770,13 @@ dmar_find(device_t dev, bool verbose)
|
||||
const char *banner;
|
||||
int i, dev_domain, dev_busno, dev_path_len;
|
||||
|
||||
/*
|
||||
* This function can only handle PCI(e) devices.
|
||||
*/
|
||||
if (device_get_devclass(device_get_parent(dev)) !=
|
||||
devclass_find("pci"))
|
||||
return (NULL);
|
||||
|
||||
dmar_dev = NULL;
|
||||
dev_domain = pci_get_domain(dev);
|
||||
dev_path_len = dmar_dev_depth(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user