]> git.proxmox.com Git - qemu.git/commitdiff
esp: execute select commands immediately when it is a non-dma command
authorHervé Poussineau <hpoussin@reactos.org>
Mon, 9 Jul 2012 10:02:22 +0000 (12:02 +0200)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 14 Jul 2012 10:11:33 +0000 (10:11 +0000)
Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
hw/esp.c

index 8d73e568864a16a18d0837cf5c772a8b0bcb1b66..aff8de68394d58d95cf847ddfe0b81860e95dfa6 100644 (file)
--- a/hw/esp.c
+++ b/hw/esp.c
@@ -270,7 +270,7 @@ static void handle_satn(ESPState *s)
     uint8_t buf[32];
     int len;
 
-    if (!s->dma_enabled) {
+    if (s->dma && !s->dma_enabled) {
         s->dma_cb = handle_satn;
         return;
     }
@@ -284,7 +284,7 @@ static void handle_s_without_atn(ESPState *s)
     uint8_t buf[32];
     int len;
 
-    if (!s->dma_enabled) {
+    if (s->dma && !s->dma_enabled) {
         s->dma_cb = handle_s_without_atn;
         return;
     }
@@ -296,7 +296,7 @@ static void handle_s_without_atn(ESPState *s)
 
 static void handle_satn_stop(ESPState *s)
 {
-    if (!s->dma_enabled) {
+    if (s->dma && !s->dma_enabled) {
         s->dma_cb = handle_satn_stop;
         return;
     }