svn commit: r308693 - head/sys/arm/ti

Luiz Otavio O Souza loos at FreeBSD.org
Tue Nov 15 19:09:37 UTC 2016


Author: loos
Date: Tue Nov 15 19:09:36 2016
New Revision: 308693
URL: https://svnweb.freebsd.org/changeset/base/308693

Log:
  Change the TI aintc driver name to "ti_aintc" to avoid the conflict with
  the aintc driver for Allwinner A10.
  
  This fixes the boot of the GENERIC ARM kernel on TI/AM335x SoCs.
  
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Modified:
  head/sys/arm/ti/aintc.c

Modified: head/sys/arm/ti/aintc.c
==============================================================================
--- head/sys/arm/ti/aintc.c	Tue Nov 15 18:57:25 2016	(r308692)
+++ head/sys/arm/ti/aintc.c	Tue Nov 15 19:09:36 2016	(r308693)
@@ -297,13 +297,13 @@ static device_method_t ti_aintc_methods[
 };
 
 static driver_t ti_aintc_driver = {
-	"aintc",
+	"ti_aintc",
 	ti_aintc_methods,
 	sizeof(struct ti_aintc_softc),
 };
 
 static devclass_t ti_aintc_devclass;
 
-EARLY_DRIVER_MODULE(aintc, simplebus, ti_aintc_driver, ti_aintc_devclass,
+EARLY_DRIVER_MODULE(ti_aintc, simplebus, ti_aintc_driver, ti_aintc_devclass,
     0, 0, BUS_PASS_INTERRUPT + BUS_PASS_ORDER_MIDDLE);
 SIMPLEBUS_PNP_INFO(compat_data);


More information about the svn-src-head mailing list