Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 31 Oct 2020 16:15:19 +0000 (UTC)
From:      Michal Meloun <mmel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r367218 - stable/12/sys/arm/mv
Message-ID:  <202010311615.09VGFJ5R030436@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010311615.09VGFJ5R030436>