Module Name:    src
Committed By:   pgoyette
Date:           Sat Mar 24 05:24:10 UTC 2018

Modified Files:
        src/sys/compat/common [pgoyette-compat]: compat_50_mod.c

Log Message:
Add raidframe init/fini calls


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/sys/compat/common/compat_50_mod.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/common/compat_50_mod.c
diff -u src/sys/compat/common/compat_50_mod.c:1.1.2.4 src/sys/compat/common/compat_50_mod.c:1.1.2.5
--- src/sys/compat/common/compat_50_mod.c:1.1.2.4	Fri Mar 23 09:41:10 2018
+++ src/sys/compat/common/compat_50_mod.c	Sat Mar 24 05:24:10 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: compat_50_mod.c,v 1.1.2.4 2018/03/23 09:41:10 pgoyette Exp $	*/
+/*	$NetBSD: compat_50_mod.c,v 1.1.2.5 2018/03/24 05:24:10 pgoyette Exp $	*/
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: compat_50_mod.c,v 1.1.2.4 2018/03/23 09:41:10 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: compat_50_mod.c,v 1.1.2.5 2018/03/24 05:24:10 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -82,6 +82,7 @@ compat_50_init(void)
 	clockctl_50_init();
 	if_spppsubr_50_init();
 	cryptodev_50_init();
+	raidframe_50_init();
 
 	return error;
 
@@ -102,6 +103,7 @@ compat_50_fini(void)
 {
 	int error = 0;
 
+	raidframe_50_fini();
 	cryptodev_50_fini();
 	if_spppsubr_50_fini();
 	clockctl_50_fini();
@@ -139,6 +141,7 @@ compat_50_fini(void)
 	clockctl_50_init();
 	if_spppsubr_50_init();
 	cryptodev_50_init();
+	raidframe_50_init();
 
 	return error;
 }

Reply via email to