Date: Tue, 15 Nov 2016 19:09:36 +0000 (UTC) From: Luiz Otavio O Souza <loos@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r308693 - head/sys/arm/ti Message-ID: <201611151909.uAFJ9aVK009551@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611151909.uAFJ9aVK009551>