summaryrefslogtreecommitdiff
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
commit1fadb93601e45d9a56cf78d24f26cc41c33320d2 (patch)
tree3d7a40a019c998e021edb665d191871d0da3b301
parent8724c5d06f3f61d77facd960390279d5bb8cf7bd (diff)
downloadqemu-1fadb93601e45d9a56cf78d24f26cc41c33320d2.tar.gz
qemu-1fadb93601e45d9a56cf78d24f26cc41c33320d2.tar.bz2
qemu-1fadb93601e45d9a56cf78d24f26cc41c33320d2.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>
-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) {