svn commit: r329317 - head/sys/arm/arm

Olivier Houchard cognet at FreeBSD.org
Thu Feb 15 15:46:15 UTC 2018


Author: cognet
Date: Thu Feb 15 15:46:14 2018
New Revision: 329317
URL: https://svnweb.freebsd.org/changeset/base/329317

Log:
  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

Modified:
  head/sys/arm/arm/gic_acpi.c

Modified: head/sys/arm/arm/gic_acpi.c
==============================================================================
--- head/sys/arm/arm/gic_acpi.c	Thu Feb 15 15:33:17 2018	(r329316)
+++ head/sys/arm/arm/gic_acpi.c	Thu Feb 15 15:46:14 2018	(r329317)
@@ -342,5 +342,5 @@ DEFINE_CLASS_1(gicv2m, arm_gicv2m_acpi_driver, arm_gic
 
 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);


More information about the svn-src-all mailing list