[PATCH 11/22] hw/sd: sd: Allow single/multiple block write for SPI mode

2020-12-31 Thread Bin Meng
From: Bin Meng At present the single/multiple block write in SPI mode is blocked by sd_normal_command(). Remove the limitation. Signed-off-by: Bin Meng --- hw/sd/sd.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/hw/sd/sd.c b/hw/sd/sd.c index 1ada616e1e..67e5f7c05d 100644 --- a/hw/sd/

Re: [PATCH 11/22] hw/sd: sd: Allow single/multiple block write for SPI mode

2021-01-13 Thread Alistair Francis
On Thu, Dec 31, 2020 at 3:42 AM Bin Meng wrote: > > From: Bin Meng > > At present the single/multiple block write in SPI mode is blocked > by sd_normal_command(). Remove the limitation. > > Signed-off-by: Bin Meng Acked-by: Alistair Francis Alistair > --- > > hw/sd/sd.c | 3 --- > 1 file ch