diff options
| author | oster <oster@NetBSD.org> | 2000-01-07 03:03:44 +0000 |
|---|---|---|
| committer | oster <oster@NetBSD.org> | 2000-01-07 03:03:44 +0000 |
| commit | 5f144eaa4bb904dcd2a208e09dc81d12a2f05236 (patch) | |
| tree | 307cc8f274ebd144bb84ad66eb4c72dc11b3e0dd /sys/dev/raidframe | |
| parent | cadfd97e07e5bd3ac97c68bf5dc5285ed8d033b5 (diff) | |
Shorten IO_BUF_ERR macro by one (unused) arg.
Diffstat (limited to 'sys/dev/raidframe')
| -rw-r--r-- | sys/dev/raidframe/rf_driver.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/raidframe/rf_driver.c b/sys/dev/raidframe/rf_driver.c index b20d0af7848..30f15730520 100644 --- a/sys/dev/raidframe/rf_driver.c +++ b/sys/dev/raidframe/rf_driver.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_driver.c,v 1.19 1999/12/07 02:54:08 oster Exp $ */ +/* $NetBSD: rf_driver.c,v 1.20 2000/01/07 03:03:44 oster Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. @@ -155,7 +155,7 @@ RF_DECLARE_GLOBAL_THREADID /* declarations for threadid.h */ #define WAIT_FOR_QUIESCENCE(_raid_) \ tsleep(&((_raid_)->accesses_suspended),PRIBIO,"raidframe quiesce", 0); -#define IO_BUF_ERR(bp, err, unit) { \ +#define IO_BUF_ERR(bp, err) { \ bp->b_flags |= B_ERROR; \ bp->b_resid = bp->b_bcount; \ bp->b_error = err; \ @@ -704,7 +704,7 @@ bp_in is a buf pointer. void * to facilitate ignoring it outside the kernel if (!raidPtr->valid) { RF_ERRORMSG("RAIDframe driver not successfully configured. Rejecting access.\n"); - IO_BUF_ERR(bp, EINVAL, raidPtr->raidid); + IO_BUF_ERR(bp, EINVAL); return (EINVAL); } @@ -727,7 +727,7 @@ bp_in is a buf pointer. void * to facilitate ignoring it outside the kernel printf("DoAccess: raid addr %lu too large to access %lu sectors. Max legal addr is %lu\n", (u_long) raidAddress, (u_long) numBlocks, (u_long) raidPtr->totalSectors); - IO_BUF_ERR(bp, ENOSPC, raidPtr->raidid); + IO_BUF_ERR(bp, ENOSPC); return (ENOSPC); } desc = rf_AllocRaidAccDesc(raidPtr, type, raidAddress, |
