Re: [PATCH] hw/sd/sdhci: Factor sdhci_sdma_transfer() out

2025-01-12 Thread Bernhard Beschow
Am 9. Januar 2025 12:20:29 UTC schrieb "Philippe Mathieu-Daudé" : >Factor sdhci_sdma_transfer() out of sdhci_data_transfer(). >Re-use it in sdhci_write(), so we don't try to run multi >block transfer for a single block. > >Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Bernhard Beschow

[PATCH] hw/sd/sdhci: Factor sdhci_sdma_transfer() out

2025-01-09 Thread Philippe Mathieu-Daudé
Factor sdhci_sdma_transfer() out of sdhci_data_transfer(). Re-use it in sdhci_write(), so we don't try to run multi block transfer for a single block. Signed-off-by: Philippe Mathieu-Daudé --- hw/sd/sdhci.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --gi