ahci: fix spacing damage on ahci_port_write

Churn.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20180531222835.16558-5-jsnow@redhat.com
[Fix patchew/checkpatch nit. --js]
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
John Snow 2018-06-08 13:17:36 -04:00
parent e538916366
commit f1123e4b5c

View file

@ -313,7 +313,7 @@ static void ahci_port_write(AHCIState *s, int port, int offset, uint32_t val)
* force the ICC bits to zero. * force the ICC bits to zero.
*/ */
pr->cmd = (pr->cmd & PORT_CMD_RO_MASK) | pr->cmd = (pr->cmd & PORT_CMD_RO_MASK) |
(val & ~(PORT_CMD_RO_MASK|PORT_CMD_ICC_MASK)); (val & ~(PORT_CMD_RO_MASK | PORT_CMD_ICC_MASK));
/* Check FIS RX and CLB engines */ /* Check FIS RX and CLB engines */
ahci_cond_start_engines(&s->dev[port]); ahci_cond_start_engines(&s->dev[port]);