git: 75547acf1cd5 - stable/13 - vmd: Rename vmd_bus class to pci
Alexander Motin
mav at FreeBSD.org
Sun Sep 12 23:03:07 UTC 2021
The branch stable/13 has been updated by mav:
URL: https://cgit.FreeBSD.org/src/commit/?id=75547acf1cd5a5d0a495b32c8113f8311f0713bd
commit 75547acf1cd5a5d0a495b32c8113f8311f0713bd
Author: Neel Chauhan <nc at FreeBSD.org>
AuthorDate: 2021-07-16 02:03:05 +0000
Commit: Alexander Motin <mav at FreeBSD.org>
CommitDate: 2021-09-12 22:44:12 +0000
vmd: Rename vmd_bus class to pci
This fixes a kernel panic when probing for vmd_bus on Intel TigerLake on
14-CURRENT. Apparently, vmd_bus is a type of PCI bus, but was registered
as a separate device class.
PR: 256915
Reviewed by: imp
Differential Revision: https://reviews.freebsd.org/D31071
(cherry picked from commit ad1f608fb2f529baf028384bbe7e8fbbff5cbe23)
---
sys/dev/vmd/vmd_bus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/vmd/vmd_bus.c b/sys/dev/vmd/vmd_bus.c
index 5eed6176630f..28ce14c63128 100644
--- a/sys/dev/vmd/vmd_bus.c
+++ b/sys/dev/vmd/vmd_bus.c
@@ -213,8 +213,8 @@ static device_method_t vmd_bus_pci_methods[] = {
static devclass_t vmd_bus_devclass;
-DEFINE_CLASS_1(vmd_bus, vmd_bus_pci_driver, vmd_bus_pci_methods,
+DEFINE_CLASS_1(pci, vmd_bus_pci_driver, vmd_bus_pci_methods,
sizeof(struct pci_softc), pci_driver);
-DRIVER_MODULE(vmd_bus, vmd, vmd_bus_pci_driver, vmd_bus_devclass, NULL, NULL);
+DRIVER_MODULE(pci, vmd, vmd_bus_pci_driver, vmd_bus_devclass, NULL, NULL);
MODULE_VERSION(vmd_bus, 1);
More information about the dev-commits-src-all
mailing list