diff options
-rw-r--r-- | hw/omap_spi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hw/omap_spi.c b/hw/omap_spi.c index bdfc659961..df250027fe 100644 --- a/hw/omap_spi.c +++ b/hw/omap_spi.c @@ -229,8 +229,11 @@ static void omap_mcspi_transfer_run(OMAPSPIBusState *s, int chnum) ch->tx = 0; ch->status |= 1 << 2; /* EOT */ ch->status |= 1 << 1; /* TXS */ - if (trm != 2) + if (trm != 2) { ch->status |= 1; /* RXS */ + } else { + ch->status &= ~1; /* RXS */ + } intr_update: if ((ch->status & 1) && trm != 2 && /* RXS */ |