Skip to content

Commit

Permalink
misc: Replace 'struct QEMUTimer' by 'QEMUTimer'
Browse files Browse the repository at this point in the history
Most code already used QEMUTimer without the redundant 'struct' keyword.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
  • Loading branch information
stweil authored and Michael Tokarev committed Dec 2, 2013
1 parent 47908a0 commit 1246b25
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions hw/char/cadence_uart.c
Expand Up @@ -120,8 +120,8 @@ typedef struct {
uint64_t char_tx_time;
CharDriverState *chr;
qemu_irq irq;
struct QEMUTimer *fifo_trigger_handle;
struct QEMUTimer *tx_time_handle;
QEMUTimer *fifo_trigger_handle;
QEMUTimer *tx_time_handle;
} UartState;

static void uart_update_status(UartState *s)
Expand Down
6 changes: 3 additions & 3 deletions hw/ppc/ppc.c
Expand Up @@ -684,7 +684,7 @@ static inline void cpu_ppc_hdecr_excp(PowerPCCPU *cpu)
}

static void __cpu_ppc_store_decr(PowerPCCPU *cpu, uint64_t *nextp,
struct QEMUTimer *timer,
QEMUTimer *timer,
void (*raise_excp)(PowerPCCPU *),
uint32_t decr, uint32_t value,
int is_excp)
Expand Down Expand Up @@ -856,9 +856,9 @@ typedef struct ppc40x_timer_t ppc40x_timer_t;
struct ppc40x_timer_t {
uint64_t pit_reload; /* PIT auto-reload value */
uint64_t fit_next; /* Tick for next FIT interrupt */
struct QEMUTimer *fit_timer;
QEMUTimer *fit_timer;
uint64_t wdt_next; /* Tick for next WDT interrupt */
struct QEMUTimer *wdt_timer;
QEMUTimer *wdt_timer;

/* 405 have the PIT, 440 have a DECR. */
unsigned int decr_excp;
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/ppc405_uc.c
Expand Up @@ -1234,7 +1234,7 @@ struct ppc4xx_gpt_t {
MemoryRegion iomem;
int64_t tb_offset;
uint32_t tb_freq;
struct QEMUTimer *timer;
QEMUTimer *timer;
qemu_irq irqs[5];
uint32_t oe;
uint32_t ol;
Expand Down
4 changes: 2 additions & 2 deletions hw/ppc/ppc_booke.c
Expand Up @@ -64,10 +64,10 @@ typedef struct booke_timer_t booke_timer_t;
struct booke_timer_t {

uint64_t fit_next;
struct QEMUTimer *fit_timer;
QEMUTimer *fit_timer;

uint64_t wdt_next;
struct QEMUTimer *wdt_timer;
QEMUTimer *wdt_timer;

uint32_t flags;
};
Expand Down
4 changes: 2 additions & 2 deletions hw/timer/m48t59.c
Expand Up @@ -61,8 +61,8 @@ struct M48t59State {
time_t stop_time;
/* Alarm & watchdog */
struct tm alarm;
struct QEMUTimer *alrm_timer;
struct QEMUTimer *wd_timer;
QEMUTimer *alrm_timer;
QEMUTimer *wd_timer;
/* NVRAM storage */
uint8_t *buffer;
/* Model parameters */
Expand Down
4 changes: 2 additions & 2 deletions include/hw/char/serial.h
Expand Up @@ -65,13 +65,13 @@ struct SerialState {
/* Interrupt trigger level for recv_fifo */
uint8_t recv_fifo_itl;

struct QEMUTimer *fifo_timeout_timer;
QEMUTimer *fifo_timeout_timer;
int timeout_ipending; /* timeout interrupt pending state */

uint64_t char_transmit_time; /* time to transmit a char in ticks */
int poll_msl;

struct QEMUTimer *modem_status_poll;
QEMUTimer *modem_status_poll;
MemoryRegion io;
};

Expand Down
4 changes: 2 additions & 2 deletions include/hw/ppc/ppc.h
Expand Up @@ -24,10 +24,10 @@ struct ppc_tb_t {
/* Decrementer management */
uint64_t decr_next; /* Tick for next decr interrupt */
uint32_t decr_freq; /* decrementer frequency */
struct QEMUTimer *decr_timer;
QEMUTimer *decr_timer;
/* Hypervisor decrementer management */
uint64_t hdecr_next; /* Tick for next hdecr interrupt */
struct QEMUTimer *hdecr_timer;
QEMUTimer *hdecr_timer;
uint64_t purr_load;
uint64_t purr_start;
void *opaque;
Expand Down
2 changes: 1 addition & 1 deletion target-alpha/cpu-qom.h
Expand Up @@ -62,7 +62,7 @@ typedef struct AlphaCPU {
CPUAlphaState env;

/* This alarm doesn't exist in real hardware; we wish it did. */
struct QEMUTimer *alarm_timer;
QEMUTimer *alarm_timer;
} AlphaCPU;

static inline AlphaCPU *alpha_env_get_cpu(CPUAlphaState *env)
Expand Down
2 changes: 1 addition & 1 deletion target-mips/cpu.h
Expand Up @@ -476,7 +476,7 @@ struct CPUMIPSState {

const mips_def_t *cpu_model;
void *irq[8];
struct QEMUTimer *timer; /* Internal timer */
QEMUTimer *timer; /* Internal timer */
};

#include "cpu-qom.h"
Expand Down
2 changes: 1 addition & 1 deletion target-openrisc/cpu.h
Expand Up @@ -307,7 +307,7 @@ typedef struct CPUOpenRISCState {
#ifndef CONFIG_USER_ONLY
CPUOpenRISCTLBContext * tlb;

struct QEMUTimer *timer;
QEMUTimer *timer;
uint32_t ttmr; /* Timer tick mode register */
uint32_t ttcr; /* Timer tick count register */

Expand Down
2 changes: 1 addition & 1 deletion target-sparc/cpu.h
Expand Up @@ -370,7 +370,7 @@ struct CPUTimer
uint32_t disabled;
uint64_t disabled_mask;
int64_t clock_offset;
struct QEMUTimer *qtimer;
QEMUTimer *qtimer;
};

typedef struct CPUTimer CPUTimer;
Expand Down
2 changes: 1 addition & 1 deletion ui/console.c
Expand Up @@ -161,7 +161,7 @@ struct QemuConsole {
};

struct DisplayState {
struct QEMUTimer *gui_timer;
QEMUTimer *gui_timer;
uint64_t last_update;
uint64_t update_interval;
bool refreshing;
Expand Down

0 comments on commit 1246b25

Please sign in to comment.