summaryrefslogtreecommitdiffstats
path: root/drivers/block/xd.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-06-19 22:45:37 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-06-19 22:45:37 +0000
commit6d403070f28cd44860fdb3a53be5da0275c65cf4 (patch)
tree0d0e7fe7b5fb7568d19e11d7d862b77a866ce081 /drivers/block/xd.c
parentecf1bf5f6c2e668d03b0a9fb026db7aa41e292e1 (diff)
Merge with 2.4.0-test1-ac21 + pile of MIPS cleanups to make merging
possible. Chainsawed RM200 kernel to compile again. Jazz machine status unknown.
Diffstat (limited to 'drivers/block/xd.c')
-rw-r--r--drivers/block/xd.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/block/xd.c b/drivers/block/xd.c
index 74df1096e..5ac2a16a6 100644
--- a/drivers/block/xd.c
+++ b/drivers/block/xd.c
@@ -258,20 +258,19 @@ static int xd_open (struct inode *inode,struct file *file)
{
int dev = DEVICE_NR(inode->i_rdev);
+ MOD_INC_USE_COUNT;
+
if (dev < xd_drives) {
while (!xd_valid[dev])
sleep_on(&xd_wait_open);
-#ifdef MODULE
- MOD_INC_USE_COUNT;
-#endif /* MODULE */
-
xd_access[dev]++;
return (0);
}
- else
- return -ENXIO;
+
+ MOD_DEC_USE_COUNT;
+ return -ENXIO;
}
/* do_xd_request: handle an incoming request */