mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
sparc32: convert debug printf statements to tracepoints
Replace debug printf statements with tracepoints. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
b45e9c05db
commit
97bf4851fe
10 changed files with 213 additions and 206 deletions
14
hw/lance.c
14
hw/lance.c
|
@ -40,8 +40,8 @@
|
|||
#include "qemu-timer.h"
|
||||
#include "qemu_socket.h"
|
||||
#include "sun4m.h"
|
||||
|
||||
#include "pcnet.h"
|
||||
#include "trace.h"
|
||||
|
||||
typedef struct {
|
||||
SysBusDevice busdev;
|
||||
|
@ -59,10 +59,8 @@ static void lance_mem_writew(void *opaque, target_phys_addr_t addr,
|
|||
uint32_t val)
|
||||
{
|
||||
SysBusPCNetState *d = opaque;
|
||||
#ifdef PCNET_DEBUG_IO
|
||||
printf("lance_mem_writew addr=" TARGET_FMT_plx " val=0x%04x\n", addr,
|
||||
val & 0xffff);
|
||||
#endif
|
||||
|
||||
trace_lance_mem_writew(addr, val & 0xffff);
|
||||
pcnet_ioport_writew(&d->state, addr, val & 0xffff);
|
||||
}
|
||||
|
||||
|
@ -72,11 +70,7 @@ static uint32_t lance_mem_readw(void *opaque, target_phys_addr_t addr)
|
|||
uint32_t val;
|
||||
|
||||
val = pcnet_ioport_readw(&d->state, addr);
|
||||
#ifdef PCNET_DEBUG_IO
|
||||
printf("lance_mem_readw addr=" TARGET_FMT_plx " val = 0x%04x\n", addr,
|
||||
val & 0xffff);
|
||||
#endif
|
||||
|
||||
trace_lance_mem_readw(addr, val & 0xffff);
|
||||
return val & 0xffff;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue