diff --git a/src/add-ons/kernel/busses/scsi/ahci/ahci_port.cpp b/src/add-ons/kernel/busses/scsi/ahci/ahci_port.cpp index c317ff4a20..3b6bb81bbe 100644 --- a/src/add-ons/kernel/busses/scsi/ahci/ahci_port.cpp +++ b/src/add-ons/kernel/busses/scsi/ahci/ahci_port.cpp @@ -187,7 +187,7 @@ AHCIPort::ResetDevice() fRegs->cmd |= PORT_CMD_ST; FlushPostedWrites(); - if (fRegs->ssts & 1) + if (fRegs->ssts & 1) { if (wait_until_set(&fRegs->ssts, 0x3, 1000000) < B_OK) { TRACE("AHCIPort::ResetDevice port %d device present but no phy communication\n", fIndex); }