qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH urgent] target-lm32/microblaze: Drop second CPU{


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH urgent] target-lm32/microblaze: Drop second CPU{LM32, MB}State typedef
Date: Wed, 14 Mar 2012 19:51:56 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2

On 03/14/2012 07:19 PM, Andreas Färber wrote:
Commit 9b9a970a23625de4ae6b7461906a9a0d98d3ca95
(target-lm32/microblaze: Typedef struct CPU{MB,LM32}State)
introduced necessary typedefs for cpu_mmu_index() and mmu.h
respectively.

On some GCC versions this leads to "error: redefinition of typedef".

Drop the original typedef to hopefully fix the build.

Signed-off-by: Andreas Färber<address@hidden>

Applied.  Thanks.

Regards,

Anthony Liguori

---
  target-lm32/cpu.h       |    4 ++--
  target-microblaze/cpu.h |    4 ++--
  2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/target-lm32/cpu.h b/target-lm32/cpu.h
index 0902a24..a7d9546 100644
--- a/target-lm32/cpu.h
+++ b/target-lm32/cpu.h
@@ -149,7 +149,7 @@ enum {
      LM32_FLAG_IGNORE_MSB = 1,
  };

-typedef struct CPULM32State {
+struct CPULM32State {
      /* general registers */
      uint32_t regs[32];

@@ -182,7 +182,7 @@ typedef struct CPULM32State {
      uint8_t num_bps;
      uint8_t num_wps;

-} CPULM32State;
+};


  CPULM32State *cpu_lm32_init(const char *cpu_model);
diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index 3b52421..33b23c2 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -230,7 +230,7 @@ typedef struct CPUMBState CPUMBState;
  #define STREAM_CONTROL   (1<<  3)
  #define STREAM_NONBLOCK  (1<<  4)

-typedef struct CPUMBState {
+struct CPUMBState {
      uint32_t debug;
      uint32_t btaken;
      uint32_t btarget;
@@ -264,7 +264,7 @@ typedef struct CPUMBState {
  #endif

      CPU_COMMON
-} CPUMBState;
+};

  CPUMBState *cpu_mb_init(const char *cpu_model);
  int cpu_mb_exec(CPUMBState *s);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]