diff options
author | imp <imp@FreeBSD.org> | 2006-04-19 21:25:55 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-04-19 21:25:55 +0000 |
commit | 8299c3aeb9d6b503bf69084d6c1529b34ae2c72a (patch) | |
tree | cea8e8ead68e72443ec671f38877096e798af308 | |
parent | 30583e8a0dd33bedac8ff89cae8407e2c279a7ac (diff) | |
download | FreeBSD-src-8299c3aeb9d6b503bf69084d6c1529b34ae2c72a.zip FreeBSD-src-8299c3aeb9d6b503bf69084d6c1529b34ae2c72a.tar.gz |
r_spare1 and r_spare2 aren't needed. They aren't used. They can't be
accessed from outside of subr_rman.c. Remove them.
Reviewed by: jmg (in theory)
-rw-r--r-- | sys/kern/subr_rman.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c index b2d7f84..1cc006b 100644 --- a/sys/kern/subr_rman.c +++ b/sys/kern/subr_rman.c @@ -89,8 +89,6 @@ struct resource_i { void *r_virtual; /* virtual address of this resource */ struct device *r_dev; /* device which has allocated this resource */ struct rman *r_rm; /* resource manager from whence this came */ - void *r_spare1; /* Spare pointer 1 */ - void *r_spare2; /* Spare pointer 2 */ int r_rid; /* optional rid for this resource. */ }; |