[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 1/8] hw/ide/ahci: remove stray backslash
From: |
Niklas Cassel |
Subject: |
[PATCH v3 1/8] hw/ide/ahci: remove stray backslash |
Date: |
Fri, 9 Jun 2023 16:08:37 +0200 |
From: Niklas Cassel <niklas.cassel@wdc.com>
This backslash obviously does not belong here, so remove it.
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: John Snow <jsnow@redhat.com>
---
hw/ide/ahci.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index 4e76d6b191..48d550f633 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -690,7 +690,7 @@ static void ahci_reset_port(AHCIState *s, int port)
s->dev[port].port_state = STATE_RUN;
if (ide_state->drive_kind == IDE_CD) {
- ahci_set_signature(d, SATA_SIGNATURE_CDROM);\
+ ahci_set_signature(d, SATA_SIGNATURE_CDROM);
ide_state->status = SEEK_STAT | WRERR_STAT | READY_STAT;
} else {
ahci_set_signature(d, SATA_SIGNATURE_DISK);
--
2.40.1
- [PATCH v3 0/8] misc AHCI cleanups, Niklas Cassel, 2023/06/09
- [PATCH v3 1/8] hw/ide/ahci: remove stray backslash,
Niklas Cassel <=
- [PATCH v3 2/8] hw/ide/core: set ERR_STAT in unsupported command completion, Niklas Cassel, 2023/06/09
- [PATCH v3 3/8] hw/ide/ahci: write D2H FIS when processing NCQ command, Niklas Cassel, 2023/06/09
- [PATCH v3 5/8] hw/ide/ahci: PxSACT and PxCI is cleared when PxCMD.ST is cleared, Niklas Cassel, 2023/06/09
- [PATCH v3 4/8] hw/ide/ahci: simplify and document PxCI handling, Niklas Cassel, 2023/06/09
- [PATCH v3 7/8] hw/ide/ahci: fix ahci_write_fis_sdb(), Niklas Cassel, 2023/06/09
- [PATCH v3 6/8] hw/ide/ahci: PxCI should not get cleared when ERR_STAT is set, Niklas Cassel, 2023/06/09
- [PATCH v3 8/8] hw/ide/ahci: fix broken SError handling, Niklas Cassel, 2023/06/09