summary refs log tree commit diff stats
path: root/hw/stellaris_enet.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2009-06-11 13:22:27 +0100
committerPaul Brook <paul@codesourcery.com>2009-06-11 13:22:27 +0100
commit57b452a8487df30d084ce2b56a993ba7473469e3 (patch)
tree3d7a40a019c998e021edb665d191871d0da3b301 /hw/stellaris_enet.c
parentdf12c1f543b228daae7a2fbcfd3bb12a6faab38a (diff)
downloadfocaccia-qemu-57b452a8487df30d084ce2b56a993ba7473469e3.tar.gz
focaccia-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.c4
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) {