Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Feb 2018 03:51:10 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r329620 - head/sys/dev/flash
Message-ID:  <201802200351.w1K3pAol043518@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Tue Feb 20 03:51:09 2018
New Revision: 329620
URL: https://svnweb.freebsd.org/changeset/base/329620

Log:
  Add missing MODULE_DEPENDS().

Modified:
  head/sys/dev/flash/at45d.c
  head/sys/dev/flash/mx25l.c

Modified: head/sys/dev/flash/at45d.c
==============================================================================
--- head/sys/dev/flash/at45d.c	Tue Feb 20 03:40:16 2018	(r329619)
+++ head/sys/dev/flash/at45d.c	Tue Feb 20 03:51:09 2018	(r329620)
@@ -450,3 +450,4 @@ static driver_t at45d_driver = {
 };
 
 DRIVER_MODULE(at45d, spibus, at45d_driver, at45d_devclass, NULL, NULL);
+MODULE_DEPEND(at45d, spibus, 1, 1, 1);

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Tue Feb 20 03:40:16 2018	(r329619)
+++ head/sys/dev/flash/mx25l.c	Tue Feb 20 03:51:09 2018	(r329620)
@@ -648,3 +648,4 @@ static driver_t mx25l_driver = {
 };
 
 DRIVER_MODULE(mx25l, spibus, mx25l_driver, mx25l_devclass, 0, 0);
+MODULE_DEPEND(mx25l, spibus, 1, 1, 1);



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