mirror of https://gitee.com/openkylin/linux.git
libata: Return proper ATA INT status in pata_bf54x driver
INT status can be OR. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
2541d0ca7e
commit
dc86f6d418
|
@ -1145,13 +1145,13 @@ static unsigned char bfin_bmdma_status(struct ata_port *ap)
|
|||
unsigned short int_status = ATAPI_GET_INT_STATUS(base);
|
||||
|
||||
if (ATAPI_GET_STATUS(base) & (MULTI_XFER_ON|ULTRA_XFER_ON)) {
|
||||
host_stat = ATA_DMA_ACTIVE;
|
||||
host_stat |= ATA_DMA_ACTIVE;
|
||||
}
|
||||
if (int_status & (MULTI_DONE_INT|UDMAIN_DONE_INT|UDMAOUT_DONE_INT)) {
|
||||
host_stat = ATA_DMA_INTR;
|
||||
host_stat |= ATA_DMA_INTR;
|
||||
}
|
||||
if (int_status & (MULTI_TERM_INT|UDMAIN_TERM_INT|UDMAOUT_TERM_INT)) {
|
||||
host_stat = ATA_DMA_ERR;
|
||||
host_stat |= ATA_DMA_ERR;
|
||||
}
|
||||
|
||||
return host_stat;
|
||||
|
|
Loading…
Reference in New Issue