sim-card
/
qemu
Archived
10
0
Fork 0

Fix stellaris ethernet

Revert bogus part of e3f5ec2b
(pass VLANClientState* as first arg to receive handlers)

Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
Paul Brook 2009-06-11 13:22:27 +01:00
parent df12c1f543
commit 57b452a848
1 changed files with 2 additions and 2 deletions

View File

@ -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) {