summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2001-11-20 02:37:29 +0000
committeroster <oster@NetBSD.org>2001-11-20 02:37:29 +0000
commitd11d1bd6fe605c1b3ef0db49d82bed604cc331a6 (patch)
tree8f1355d934012e467f5eff557d6164580fd714f3 /sys/dev/raidframe
parent9cc0f333456619e05fa4cd6d18514f65fe153b52 (diff)
Cleanup some whitespace that indent got wrong a long time ago.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_alloclist.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/raidframe/rf_alloclist.c b/sys/dev/raidframe/rf_alloclist.c
index 9ab2f0ee9f8..7c3493001b1 100644
--- a/sys/dev/raidframe/rf_alloclist.c
+++ b/sys/dev/raidframe/rf_alloclist.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $ */
+/* $NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $ */
/*
* Copyright (c) 1995 Carnegie-Mellon University.
* All rights reserved.
@@ -37,7 +37,7 @@
***************************************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.9 2001/11/20 02:37:29 oster Exp $");
#include <dev/raidframe/raidframevar.h>
@@ -50,18 +50,18 @@ __KERNEL_RCSID(0, "$NetBSD: rf_alloclist.c,v 1.8 2001/11/13 07:11:12 lukem Exp $
#include "rf_shutdown.h"
RF_DECLARE_STATIC_MUTEX(alist_mutex)
- static unsigned int fl_hit_count, fl_miss_count;
+static unsigned int fl_hit_count, fl_miss_count;
- static RF_AllocListElem_t *al_free_list = NULL;
- static int al_free_list_count;
+static RF_AllocListElem_t *al_free_list = NULL;
+static int al_free_list_count;
#define RF_AL_FREELIST_MAX 256
#define DO_FREE(_p,_sz) RF_Free((_p),(_sz))
- static void rf_ShutdownAllocList(void *);
+static void rf_ShutdownAllocList(void *);
- static void rf_ShutdownAllocList(ignored)
+static void rf_ShutdownAllocList(ignored)
void *ignored;
{
RF_AllocListElem_t *p, *pt;