Revision 001faf32 hw/apb_pci.c

b/hw/apb_pci.c
33 33
//#define DEBUG_APB
34 34

  
35 35
#ifdef DEBUG_APB
36
#define APB_DPRINTF(fmt, args...) \
37
do { printf("APB: " fmt , ##args); } while (0)
36
#define APB_DPRINTF(fmt, ...) \
37
do { printf("APB: " fmt , ## __VA_ARGS__); } while (0)
38 38
#else
39
#define APB_DPRINTF(fmt, args...)
39
#define APB_DPRINTF(fmt, ...)
40 40
#endif
41 41

  
42 42
typedef target_phys_addr_t pci_addr_t;

Also available in: Unified diff