aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--darwin-user/qemu.h3
-rw-r--r--hw/mips_malta.c3
-rw-r--r--hw/mips_r4k.c3
-rw-r--r--hw/ppc.c4
-rw-r--r--hw/ppc405_boards.c4
-rw-r--r--hw/ppc405_uc.c4
-rw-r--r--hw/ppc4xx_devs.c4
-rw-r--r--hw/ppc_prep.c4
8 files changed, 8 insertions, 21 deletions
diff --git a/darwin-user/qemu.h b/darwin-user/qemu.h
index 7240f8208..462bbdac2 100644
--- a/darwin-user/qemu.h
+++ b/darwin-user/qemu.h
@@ -109,8 +109,7 @@ void cpu_loop(CPUState *env);
void init_paths(const char *prefix);
const char *path(const char *pathname);
-extern int loglevel;
-extern FILE *logfile;
+#include "qemu-log.h"
/* commpage.c */
void commpage_init(void);
diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index 449b13bf3..629e91470 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -36,6 +36,7 @@
#include "sysemu.h"
#include "audio/audio.h"
#include "boards.h"
+#include "qemu-log.h"
//#define DEBUG_BOARD_INIT
@@ -59,8 +60,6 @@
#define MAX_IDE_BUS 2
-extern FILE *logfile;
-
typedef struct {
uint32_t leds;
uint32_t brk;
diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c
index 1499af786..6551b02e0 100644
--- a/hw/mips_r4k.c
+++ b/hw/mips_r4k.c
@@ -15,6 +15,7 @@
#include "sysemu.h"
#include "boards.h"
#include "flash.h"
+#include "qemu-log.h"
#ifdef TARGET_WORDS_BIGENDIAN
#define BIOS_FILENAME "mips_bios.bin"
@@ -35,8 +36,6 @@ static const int ide_irq[2] = { 14, 15 };
static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
-extern FILE *logfile;
-
static PITState *pit; /* PIT i8254 */
/* i8254 PIT is attached to the IRQ0 at PIC i8259 */
diff --git a/hw/ppc.c b/hw/ppc.c
index fd247aa87..c1bc486e0 100644
--- a/hw/ppc.c
+++ b/hw/ppc.c
@@ -26,13 +26,11 @@
#include "qemu-timer.h"
#include "sysemu.h"
#include "nvram.h"
+#include "qemu-log.h"
//#define PPC_DEBUG_IRQ
//#define PPC_DEBUG_TB
-extern FILE *logfile;
-extern int loglevel;
-
static void cpu_ppc_tb_stop (CPUState *env);
static void cpu_ppc_tb_start (CPUState *env);
diff --git a/hw/ppc405_boards.c b/hw/ppc405_boards.c
index 3e3ea5676..296e07132 100644
--- a/hw/ppc405_boards.c
+++ b/hw/ppc405_boards.c
@@ -29,9 +29,7 @@
#include "sysemu.h"
#include "block.h"
#include "boards.h"
-
-extern int loglevel;
-extern FILE *logfile;
+#include "qemu-log.h"
#define BIOS_FILENAME "ppc405_rom.bin"
#undef BIOS_SIZE
diff --git a/hw/ppc405_uc.c b/hw/ppc405_uc.c
index b6b25b7ca..25bcfd82f 100644
--- a/hw/ppc405_uc.c
+++ b/hw/ppc405_uc.c
@@ -27,9 +27,7 @@
#include "pc.h"
#include "qemu-timer.h"
#include "sysemu.h"
-
-extern int loglevel;
-extern FILE *logfile;
+#include "qemu-log.h"
#define DEBUG_OPBA
#define DEBUG_SDRAM
diff --git a/hw/ppc4xx_devs.c b/hw/ppc4xx_devs.c
index ee821f5b5..d240f0e29 100644
--- a/hw/ppc4xx_devs.c
+++ b/hw/ppc4xx_devs.c
@@ -25,9 +25,7 @@
#include "ppc.h"
#include "ppc4xx.h"
#include "sysemu.h"
-
-extern int loglevel;
-extern FILE *logfile;
+#include "qemu-log.h"
//#define DEBUG_MMIO
//#define DEBUG_UNASSIGNED
diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c
index 88ba6b03d..3c35d1783 100644
--- a/hw/ppc_prep.c
+++ b/hw/ppc_prep.c
@@ -31,6 +31,7 @@
#include "pci.h"
#include "ppc.h"
#include "boards.h"
+#include "qemu-log.h"
//#define HARD_DEBUG_PPC_IO
//#define DEBUG_PPC_IO
@@ -44,9 +45,6 @@
#define KERNEL_LOAD_ADDR 0x01000000
#define INITRD_LOAD_ADDR 0x01800000
-extern int loglevel;
-extern FILE *logfile;
-
#if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO)
#define DEBUG_PPC_IO
#endif