svn commit: r367218 - stable/12/sys/arm/mv

Michal Meloun mmel at FreeBSD.org
Sat Oct 31 16:15:20 UTC 2020


Author: mmel
Date: Sat Oct 31 16:15:19 2020
New Revision: 367218
URL: https://svnweb.freebsd.org/changeset/base/367218

Log:
  MFC r363121:
  
    Fix the module name for some arm drivers.  Module name (unlike of the of
    driver name) must be system wide unique.

Modified:
  stable/12/sys/arm/mv/mvebu_gpio.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/arm/mv/mvebu_gpio.c
==============================================================================
--- stable/12/sys/arm/mv/mvebu_gpio.c	Sat Oct 31 16:05:24 2020	(r367217)
+++ stable/12/sys/arm/mv/mvebu_gpio.c	Sat Oct 31 16:15:19 2020	(r367218)
@@ -864,6 +864,6 @@ static device_method_t mvebu_gpio_methods[] = {
 static devclass_t mvebu_gpio_devclass;
 static DEFINE_CLASS_0(gpio, mvebu_gpio_driver, mvebu_gpio_methods,
     sizeof(struct mvebu_gpio_softc));
-EARLY_DRIVER_MODULE(gpio, simplebus, mvebu_gpio_driver,
+EARLY_DRIVER_MODULE(mvebu_gpio, simplebus, mvebu_gpio_driver,
      mvebu_gpio_devclass, NULL, NULL,
      BUS_PASS_TIMER + BUS_PASS_ORDER_LAST);


More information about the svn-src-stable mailing list