diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-28 04:56:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 12:16:03 -0500 |
commit | 3b71797eff4352b4295919efc52de84f84d33d94 (patch) | |
tree | c59b38a2da075c585adaad0d432f0962dfb6c396 /drivers/block | |
parent | b9e20a920092eb3840424f85c78852c0433df00d (diff) |
[PATCH] drivers/block/paride/pd.c: fix an off-by-one error
The Coverity checker found this off-by-one error.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/paride/pd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/block/paride/pd.c b/drivers/block/paride/pd.c index 62d2464c12f2..2403721f9db1 100644 --- a/drivers/block/paride/pd.c +++ b/drivers/block/paride/pd.c | |||
@@ -151,6 +151,7 @@ enum {D_PRT, D_PRO, D_UNI, D_MOD, D_GEO, D_SBY, D_DLY, D_SLV}; | |||
151 | #include <linux/cdrom.h> /* for the eject ioctl */ | 151 | #include <linux/cdrom.h> /* for the eject ioctl */ |
152 | #include <linux/blkdev.h> | 152 | #include <linux/blkdev.h> |
153 | #include <linux/blkpg.h> | 153 | #include <linux/blkpg.h> |
154 | #include <linux/kernel.h> | ||
154 | #include <asm/uaccess.h> | 155 | #include <asm/uaccess.h> |
155 | #include <linux/sched.h> | 156 | #include <linux/sched.h> |
156 | #include <linux/workqueue.h> | 157 | #include <linux/workqueue.h> |
@@ -275,7 +276,7 @@ static void pd_print_error(struct pd_unit *disk, char *msg, int status) | |||
275 | int i; | 276 | int i; |
276 | 277 | ||
277 | printk("%s: %s: status = 0x%x =", disk->name, msg, status); | 278 | printk("%s: %s: status = 0x%x =", disk->name, msg, status); |
278 | for (i = 0; i < 18; i++) | 279 | for (i = 0; i < ARRAY_SIZE(pd_errs); i++) |
279 | if (status & (1 << i)) | 280 | if (status & (1 << i)) |
280 | printk(" %s", pd_errs[i]); | 281 | printk(" %s", pd_errs[i]); |
281 | printk("\n"); | 282 | printk("\n"); |