Backout some "new stuff" that accidentally got included on the last commit.

This commit is contained in:
oster 2002-08-03 00:38:42 +00:00
parent 8dd04cdcd7
commit 61015077a7
1 changed files with 2 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rf_driver.c,v 1.50 2002/08/02 03:42:34 oster Exp $ */
/* $NetBSD: rf_driver.c,v 1.51 2002/08/03 00:38:42 oster Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
* All rights reserved.
@ -73,7 +73,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rf_driver.c,v 1.50 2002/08/02 03:42:34 oster Exp $");
__KERNEL_RCSID(0, "$NetBSD: rf_driver.c,v 1.51 2002/08/03 00:38:42 oster Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -491,21 +491,6 @@ rf_Configure(raidPtr, cfgPtr, ac)
raidPtr->valid = 1;
printf("raid%d: %s\n", raidPtr->raidid,
raidPtr->Layout.map->configName);
printf("raid%d: Components: ", raidPtr->raidid);
for (row = 0; row < raidPtr->numRow; row++) {
for (col = 0; col < raidPtr->numCol; col++) {
printf("%s ", raidPtr->Disks[row][col].devname);
}
}
printf("\n");
printf("raid%d: Total Sectors: %lu (%lu MB)\n",
raidPtr->raidid,
(unsigned long) raidPtr->totalSectors,
(unsigned long) (raidPtr->totalSectors / 1024 *
(1 << raidPtr->logBytesPerSector) / 1024));
return (0);
}