svn commit: r291826 - head/sys/dev/ioat

Conrad E. Meyer cem at FreeBSD.org
Fri Dec 4 23:31:33 UTC 2015


Author: cem
Date: Fri Dec  4 23:31:32 2015
New Revision: 291826
URL: https://svnweb.freebsd.org/changeset/base/291826

Log:
  ioat(4): Add MODULE_VERSION so MODULE_DEPEND works
  
  Suggested by:	jhb
  Review in progress:	cc
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/dev/ioat/ioat.c

Modified: head/sys/dev/ioat/ioat.c
==============================================================================
--- head/sys/dev/ioat/ioat.c	Fri Dec  4 23:22:07 2015	(r291825)
+++ head/sys/dev/ioat/ioat.c	Fri Dec  4 23:31:32 2015	(r291826)
@@ -141,6 +141,7 @@ static driver_t ioat_pci_driver = {
 
 static devclass_t ioat_devclass;
 DRIVER_MODULE(ioat, pci, ioat_pci_driver, ioat_devclass, 0, 0);
+MODULE_VERSION(ioat, 1);
 
 /*
  * Private data structures


More information about the svn-src-head mailing list