diff options
Diffstat (limited to 'drivers/scsi/ncr53c8xx.c')
-rw-r--r-- | drivers/scsi/ncr53c8xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/ncr53c8xx.c b/drivers/scsi/ncr53c8xx.c index d89289400425..ceab4f73caf1 100644 --- a/drivers/scsi/ncr53c8xx.c +++ b/drivers/scsi/ncr53c8xx.c | |||
@@ -8186,7 +8186,7 @@ static void insert_into_waiting_list(struct ncb *np, struct scsi_cmnd *cmd) | |||
8186 | cmd->next_wcmd = NULL; | 8186 | cmd->next_wcmd = NULL; |
8187 | if (!(wcmd = np->waiting_list)) np->waiting_list = cmd; | 8187 | if (!(wcmd = np->waiting_list)) np->waiting_list = cmd; |
8188 | else { | 8188 | else { |
8189 | while ((wcmd->next_wcmd) != 0) | 8189 | while (wcmd->next_wcmd) |
8190 | wcmd = (struct scsi_cmnd *) wcmd->next_wcmd; | 8190 | wcmd = (struct scsi_cmnd *) wcmd->next_wcmd; |
8191 | wcmd->next_wcmd = (char *) cmd; | 8191 | wcmd->next_wcmd = (char *) cmd; |
8192 | } | 8192 | } |
@@ -8222,7 +8222,7 @@ static void process_waiting_list(struct ncb *np, int sts) | |||
8222 | #ifdef DEBUG_WAITING_LIST | 8222 | #ifdef DEBUG_WAITING_LIST |
8223 | if (waiting_list) printk("%s: waiting_list=%lx processing sts=%d\n", ncr_name(np), (u_long) waiting_list, sts); | 8223 | if (waiting_list) printk("%s: waiting_list=%lx processing sts=%d\n", ncr_name(np), (u_long) waiting_list, sts); |
8224 | #endif | 8224 | #endif |
8225 | while ((wcmd = waiting_list) != 0) { | 8225 | while (wcmd = waiting_list) { |
8226 | waiting_list = (struct scsi_cmnd *) wcmd->next_wcmd; | 8226 | waiting_list = (struct scsi_cmnd *) wcmd->next_wcmd; |
8227 | wcmd->next_wcmd = NULL; | 8227 | wcmd->next_wcmd = NULL; |
8228 | if (sts == DID_OK) { | 8228 | if (sts == DID_OK) { |