Skip to content

Commit

Permalink
PPC: spapr: Remove global variable
Browse files Browse the repository at this point in the history
Global variables are bad. Let's move spapr_has_graphics into the
machine state struct.

Signed-off-by: Alexander Graf <agraf@suse.de>
  • Loading branch information
agraf committed Aug 15, 2012
1 parent 8c57b86 commit 3fc5acd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions hw/spapr.c
Expand Up @@ -83,7 +83,6 @@
#define PHANDLE_XICP 0x00001111

sPAPREnvironment *spapr;
bool spapr_has_graphics;

qemu_irq spapr_allocate_irq(uint32_t hint, uint32_t *irq_num,
enum xics_irq_type type)
Expand Down Expand Up @@ -508,7 +507,7 @@ static void spapr_finalize_fdt(sPAPREnvironment *spapr,
}
}

if (!spapr_has_graphics) {
if (!spapr->has_graphics) {
spapr_populate_chosen_stdout(fdt, spapr->vio_bus);
}

Expand Down Expand Up @@ -736,7 +735,7 @@ static void ppc_spapr_init(ram_addr_t ram_size,

/* Graphics */
if (spapr_vga_init(QLIST_FIRST(&spapr->phbs)->host_state.bus)) {
spapr_has_graphics = true;
spapr->has_graphics = true;
}

if (rma_size < (MIN_RMA_SLOF << 20)) {
Expand Down
1 change: 1 addition & 0 deletions hw/spapr.h
Expand Up @@ -23,6 +23,7 @@ typedef struct sPAPREnvironment {
int next_irq;
int rtc_offset;
char *cpu_model;
bool has_graphics;
} sPAPREnvironment;

#define H_SUCCESS 0
Expand Down

0 comments on commit 3fc5acd

Please sign in to comment.