projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e436af
)
[PATCH] ahci: fix err_mask setting in ahci_host_intr
author
Tejun Heo
<htejun@gmail.com>
Mon, 23 Jan 2006 04:09:36 +0000
(13:09 +0900)
committer
Jeff Garzik
<jgarzik@pobox.com>
Fri, 27 Jan 2006 03:36:27 +0000
(22:36 -0500)
In ahci_host_intr err_mask is determined from IRQ status but never
used. This patch sets qc->err_mask to the determined err_mask.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
drivers/scsi/ahci.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/ahci.c
b/drivers/scsi/ahci.c
index
30676b0
..
a168b52
100644
(file)
--- a/
drivers/scsi/ahci.c
+++ b/
drivers/scsi/ahci.c
@@
-721,7
+721,7
@@
static inline int ahci_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc)
ahci_restart_port(ap, status);
if (qc) {
- qc->err_mask |=
AC_ERR_OTHER
;
+ qc->err_mask |=
err_mask
;
ata_qc_complete(qc);
}
}