On Thu, Dec 14, 2017 at 7:15 PM, Philippe Mathieu-Daudé <[email protected]> wrote: > From: Andrey Smirnov <[email protected]> > > Cc: Peter Maydell <[email protected]> > Cc: Jason Wang <[email protected]> > Cc: Philippe Mathieu-Daudé <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > Reviewed-by: Peter Maydell <[email protected]> > Signed-off-by: Andrey Smirnov <[email protected]> > Reviewed-by: Philippe Mathieu-Daudé <[email protected]> > Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Alistair Francis <[email protected]> Alistair > --- > hw/sd/sdhci.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c > index 9c1b28d9dd..64a9b26e0d 100644 > --- a/hw/sd/sdhci.c > +++ b/hw/sd/sdhci.c > @@ -1124,6 +1124,9 @@ sdhci_write(void *opaque, hwaddr offset, uint64_t val, > unsigned size) > case SDHC_ADMASYSADDR + 4: > s->admasysaddr = deposit64(s->admasysaddr, 32, 32, value); > break; > + case SDHC_ACMD12ERRSTS: > + MASKED_WRITE(s->acmd12errsts, mask, value); > + break; > case SDHC_FEAER: > s->acmd12errsts |= value; > s->errintsts |= (value >> 16) & s->errintstsen; > -- > 2.15.1 > >
