diff options
author | Paul Brook <paul@codesourcery.com> | 2009-06-11 13:22:27 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-06-11 13:22:27 +0100 |
commit | 57b452a8487df30d084ce2b56a993ba7473469e3 (patch) | |
tree | 3d7a40a019c998e021edb665d191871d0da3b301 /hw/stellaris_enet.c | |
parent | df12c1f543b228daae7a2fbcfd3bb12a6faab38a (diff) | |
download | qemu-57b452a8487df30d084ce2b56a993ba7473469e3.tar.gz qemu-57b452a8487df30d084ce2b56a993ba7473469e3.tar.bz2 qemu-57b452a8487df30d084ce2b56a993ba7473469e3.zip |
Fix stellaris ethernet
Revert bogus part of e3f5ec2b
(pass VLANClientState* as first arg to receive handlers)
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/stellaris_enet.c')
-rw-r--r-- | hw/stellaris_enet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/stellaris_enet.c b/hw/stellaris_enet.c index f5b83e445c..8586db6126 100644 --- a/hw/stellaris_enet.c +++ b/hw/stellaris_enet.c @@ -130,9 +130,9 @@ static int stellaris_enet_can_receive(VLANClientState *vc) return (s->np < 31); } -static uint32_t stellaris_enet_read(VLANClientState *vc, target_phys_addr_t offset) +static uint32_t stellaris_enet_read(void *opaque, target_phys_addr_t offset) { - stellaris_enet_state *s = vc->opaque; + stellaris_enet_state *s = (stellaris_enet_state *)opaque; uint32_t val; switch (offset) { |