summaryrefslogtreecommitdiffstats
path: root/sys/dev/raidframe/rf_reconstruct.c
diff options
context:
space:
mode:
authorpeter <peter@openbsd.org>1999-08-04 13:10:54 +0000
committerpeter <peter@openbsd.org>1999-08-04 13:10:54 +0000
commit9622ae658b12f76d0d4e47e0e7635f03b5b108c5 (patch)
treec8ab95d4def69230046d058672b27f86f3535f94 /sys/dev/raidframe/rf_reconstruct.c
parentef* at isapnp? (diff)
downloadwireguard-openbsd-9622ae658b12f76d0d4e47e0e7635f03b5b108c5.tar.xz
wireguard-openbsd-9622ae658b12f76d0d4e47e0e7635f03b5b108c5.zip
* remove redundant rf_ccmn.h
* remove init call to rf_ConfigureEtimer() and rf_sys.c in which it is the only function. update conf/files to reflect this. * update sources to make sure _KERNEL is used not KERNEL * change rf_etimer.h to protect macros an include of sys/kernel.h with a check for _KERNEL - let raidctl compile again.
Diffstat (limited to 'sys/dev/raidframe/rf_reconstruct.c')
-rw-r--r--sys/dev/raidframe/rf_reconstruct.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_reconstruct.c b/sys/dev/raidframe/rf_reconstruct.c
index a1263674809..7debdac2ade 100644
--- a/sys/dev/raidframe/rf_reconstruct.c
+++ b/sys/dev/raidframe/rf_reconstruct.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rf_reconstruct.c,v 1.4 1999/08/03 13:56:37 peter Exp $ */
+/* $OpenBSD: rf_reconstruct.c,v 1.5 1999/08/04 13:10:55 peter Exp $ */
/* $NetBSD: rf_reconstruct.c,v 1.5 1999/03/02 03:18:49 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
@@ -258,9 +258,9 @@ rf_FreeReconDesc(reconDesc)
printf("RAIDframe: %qu max exec uSec\n", reconDesc->maxReconExecuSecs);
-#if (RF_RECON_STATS > 0) || defined(KERNEL)
+#if (RF_RECON_STATS > 0) || defined(_KERNEL)
printf("\n");
-#endif /* (RF_RECON_STATS > 0) || KERNEL */
+#endif /* (RF_RECON_STATS > 0) || _KERNEL */
RF_FREELIST_FREE(rf_recond_freelist, reconDesc, next);
}