Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/pgoyette-compat]: src/sys/compat/common Also add raidframe init/fini for...
details: https://anonhg.NetBSD.org/src/rev/79c9718976cc
branches: pgoyette-compat
changeset: 321085:79c9718976cc
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Sat Mar 24 05:25:59 2018 +0000
description:
Also add raidframe init/fini for compat_80
diffstat:
sys/compat/common/compat_80_mod.c | 8 ++------
1 files changed, 2 insertions(+), 6 deletions(-)
diffs (45 lines):
diff -r 4ddceaad04b9 -r 79c9718976cc sys/compat/common/compat_80_mod.c
--- a/sys/compat/common/compat_80_mod.c Sat Mar 24 05:24:10 2018 +0000
+++ b/sys/compat/common/compat_80_mod.c Sat Mar 24 05:25:59 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: compat_80_mod.c,v 1.1.2.4 2018/03/24 01:59:15 pgoyette Exp $ */
+/* $NetBSD: compat_80_mod.c,v 1.1.2.5 2018/03/24 05:25:59 pgoyette Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: compat_80_mod.c,v 1.1.2.4 2018/03/24 01:59:15 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: compat_80_mod.c,v 1.1.2.5 2018/03/24 05:25:59 pgoyette Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -56,26 +56,22 @@
int compat_80_init(void)
{
-#ifdef NOTYET
int error;
error = raidframe_80_init();
if (error != 0)
return error;
-#endif
return 0;
}
int compat_80_fini(void)
{
-#ifdef NOTYET
int error;
error = raidframe_80_fini();
if (error != 0)
return error;
-#endif
return 0;
}
Home |
Main Index |
Thread Index |
Old Index