Rename the ACPI variant of the gicv2m driver from "gicv2m" to "gicv2m_acpi".

The FDT variant is called "gicv2m" too, and as both would try to register
on gic, only one of them would succeed, while we want them both in a
GENERIC kernel.

Reviewed by:	andrew
This commit is contained in:
Olivier Houchard 2018-02-15 15:46:14 +00:00
parent 4daa199d7b
commit 0511fa0efd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329317

View File

@ -342,5 +342,5 @@ DEFINE_CLASS_1(gicv2m, arm_gicv2m_acpi_driver, arm_gicv2m_acpi_methods,
static devclass_t arm_gicv2m_acpi_devclass;
EARLY_DRIVER_MODULE(gicv2m, gic, arm_gicv2m_acpi_driver,
EARLY_DRIVER_MODULE(gicv2m_acpi, gic, arm_gicv2m_acpi_driver,
arm_gicv2m_acpi_devclass, 0, 0, BUS_PASS_INTERRUPT + BUS_PASS_ORDER_MIDDLE);