diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-05-01 19:47:10 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-05-20 13:53:47 -0400 |
commit | 380c3877ae5de888cfb7a59990b9aee5a415295f (patch) | |
tree | f66e529dc2d25c06fb97d181f3e45f72fc7c3699 /drivers | |
parent | 16c4b3e2071ad73e5cd2aa82961eed0414df6a7d (diff) |
[SCSI] drivers/scsi/sym53c416.c: fix a wrong check
The Coverity checker found that this for loop was wrong.
This patch changes it to what seems to be intended.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/sym53c416.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sym53c416.c b/drivers/scsi/sym53c416.c index f26c3a29e631..ebfddd40ce67 100644 --- a/drivers/scsi/sym53c416.c +++ b/drivers/scsi/sym53c416.c | |||
@@ -809,7 +809,7 @@ static int sym53c416_host_reset(Scsi_Cmnd *SCpnt) | |||
809 | /* printk("sym53c416_reset\n"); */ | 809 | /* printk("sym53c416_reset\n"); */ |
810 | base = SCpnt->device->host->io_port; | 810 | base = SCpnt->device->host->io_port; |
811 | /* search scsi_id - fixme, we shouldnt need to iterate for this! */ | 811 | /* search scsi_id - fixme, we shouldnt need to iterate for this! */ |
812 | for(i = 0; i < host_index && scsi_id != -1; i++) | 812 | for(i = 0; i < host_index && scsi_id == -1; i++) |
813 | if(hosts[i].base == base) | 813 | if(hosts[i].base == base) |
814 | scsi_id = hosts[i].scsi_id; | 814 | scsi_id = hosts[i].scsi_id; |
815 | outb(RESET_CHIP, base + COMMAND_REG); | 815 | outb(RESET_CHIP, base + COMMAND_REG); |