svn commit: r335766 - head/sys/dev/efidev

Ian Lepore ian at FreeBSD.org
Thu Jun 28 17:07:21 UTC 2018


Author: ian
Date: Thu Jun 28 17:07:20 2018
New Revision: 335766
URL: https://svnweb.freebsd.org/changeset/base/335766

Log:
  Add missing MODULE_VERSION() and MODULE_DEPEND().

Modified:
  head/sys/dev/efidev/efirtc.c

Modified: head/sys/dev/efidev/efirtc.c
==============================================================================
--- head/sys/dev/efidev/efirtc.c	Thu Jun 28 17:01:04 2018	(r335765)
+++ head/sys/dev/efidev/efirtc.c	Thu Jun 28 17:07:20 2018	(r335766)
@@ -202,3 +202,5 @@ static driver_t efirtc_driver = {
 };
 
 DRIVER_MODULE(efirtc, nexus, efirtc_driver, efirtc_devclass, 0, 0);
+MODULE_VERSION(efirtc, 1);
+MODULE_DEPEND(efirtc, efirt, 1, 1, 1);


More information about the svn-src-all mailing list