Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Since the ld code included with the nvme module ...



details:   https://anonhg.NetBSD.org/src/rev/c3c78490054f
branches:  trunk
changeset: 817952:c3c78490054f
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Sep 17 03:02:03 2016 +0000

description:
Since the ld code included with the nvme module references stuff in
the dk_subr module, add a dependency.

diffstat:

 sys/dev/pci/nvme_pci.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b6d7b573ee40 -r c3c78490054f sys/dev/pci/nvme_pci.c
--- a/sys/dev/pci/nvme_pci.c    Sat Sep 17 02:50:08 2016 +0000
+++ b/sys/dev/pci/nvme_pci.c    Sat Sep 17 03:02:03 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nvme_pci.c,v 1.7 2016/09/16 23:20:31 pgoyette Exp $    */
+/*     $NetBSD: nvme_pci.c,v 1.8 2016/09/17 03:02:03 pgoyette Exp $    */
 /*     $OpenBSD: nvme_pci.c,v 1.3 2016/04/14 11:18:32 dlg Exp $ */
 
 /*
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nvme_pci.c,v 1.7 2016/09/16 23:20:31 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nvme_pci.c,v 1.8 2016/09/17 03:02:03 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -417,7 +417,7 @@
        return 0;
 }
 
-MODULE(MODULE_CLASS_DRIVER, nvme, "pci");
+MODULE(MODULE_CLASS_DRIVER, nvme, "pci,dk_subr");
 
 #ifdef _MODULE
 #include "ioconf.c"



Home | Main Index | Thread Index | Old Index