]> Git Repo - qemu.git/blobdiff - hw/net/stellaris_enet.c
Merge remote-tracking branch 'remotes/kraxel/tags/usb-20170621-pull-request' into...
[qemu.git] / hw / net / stellaris_enet.c
index 957730e0237b9f7c155defa8e111235b73aab7f3..04bd10ada3f29c55342b488ea73ab43967f48145 100644 (file)
@@ -416,7 +416,10 @@ static void stellaris_enet_write(void *opaque, hwaddr offset,
         s->thr = value;
         break;
     case 0x20: /* MCTL */
-        s->mctl = value;
+        /* TODO: MII registers aren't modelled.
+         * Clear START, indicating that the operation completes immediately.
+         */
+        s->mctl = value & ~1;
         break;
     case 0x24: /* MDV */
         s->mdv = value;
This page took 0.025829 seconds and 4 git commands to generate.