From: Henne Date: Mon, 9 Oct 2006 13:38:34 +0000 (+0200) Subject: [SCSI] fix typo in previous Scsi_Cmnd convertion in aic7xxx_old.c X-Git-Tag: v2.6.19-rc4~86^2~31 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=8e394aec14f24e3b41a315a2dc53537024190c8a;p=safe%2Fjmp%2Flinux-2.6 [SCSI] fix typo in previous Scsi_Cmnd convertion in aic7xxx_old.c Fixes a typo in the aic7xxx_old.c. Signed-off-by: Olaf Hering Signed-off-by: Henrik Kretzschmar Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/aic7xxx_old.c b/drivers/scsi/aic7xxx_old.c index bcd7fff..46eed10 100644 --- a/drivers/scsi/aic7xxx_old.c +++ b/drivers/scsi/aic7xxx_old.c @@ -2646,7 +2646,7 @@ static void aic7xxx_done_cmds_complete(struct aic7xxx_host *p) while (p->completeq.head != NULL) { cmd = p->completeq.head; - p->completeq.head = (struct scsi_Cmnd *) cmd->host_scribble; + p->completeq.head = (struct scsi_cmnd *) cmd->host_scribble; cmd->host_scribble = NULL; cmd->scsi_done(cmd); }