]> Git Repo - qemu.git/commitdiff
etrax: Update ethernet mgm-ctrl reg on writes
authorEdgar E. Iglesias <[email protected]>
Sun, 25 Jul 2010 19:03:56 +0000 (21:03 +0200)
committerEdgar E. Iglesias <[email protected]>
Sun, 25 Jul 2010 19:03:56 +0000 (21:03 +0200)
Some SW drivers dont keep track of what they've written and
depend on the HW latching write contents for later
read+modify+write sequences.

Signed-off-by: Edgar E. Iglesias <[email protected]>
hw/etraxfs_eth.c

index 187ece19ead3e5f5ecee6a060183d2d7dcbcefaa..b897c9c16760973ebfa1660ccd63f21500725339 100644 (file)
@@ -437,6 +437,7 @@ eth_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
                                eth_validate_duplex(eth);
                        }
                        eth->mdio_bus.mdc = !!(value & 4);
+                       eth->regs[addr] = value;
                        break;
 
                case RW_REC_CTRL:
This page took 0.027495 seconds and 4 git commands to generate.