Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24467
b: refs/heads/master
c: 3b71797
h: refs/heads/master
i:
  24465: a15f63a
  24463: 398ae7b
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Mar 28, 2006
1 parent 68a4040 commit 3096ae2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b9e20a920092eb3840424f85c78852c0433df00d
refs/heads/master: 3b71797eff4352b4295919efc52de84f84d33d94
3 changes: 2 additions & 1 deletion trunk/drivers/block/paride/pd.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ enum {D_PRT, D_PRO, D_UNI, D_MOD, D_GEO, D_SBY, D_DLY, D_SLV};
#include <linux/cdrom.h> /* for the eject ioctl */
#include <linux/blkdev.h>
#include <linux/blkpg.h>
#include <linux/kernel.h>
#include <asm/uaccess.h>
#include <linux/sched.h>
#include <linux/workqueue.h>
Expand Down Expand Up @@ -275,7 +276,7 @@ static void pd_print_error(struct pd_unit *disk, char *msg, int status)
int i;

printk("%s: %s: status = 0x%x =", disk->name, msg, status);
for (i = 0; i < 18; i++)
for (i = 0; i < ARRAY_SIZE(pd_errs); i++)
if (status & (1 << i))
printk(" %s", pd_errs[i]);
printk("\n");
Expand Down

0 comments on commit 3096ae2

Please sign in to comment.