Skip to content

Commit

Permalink
etraxfs_timer: Rename etrax_timer to ETRAXTimerState
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Jul 29, 2013
1 parent 831aab9 commit 3c9a8a8
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions hw/timer/etraxfs_timer.c
Expand Up @@ -42,7 +42,7 @@
#define R_INTR 0x50
#define R_MASKED_INTR 0x54

struct etrax_timer {
typedef struct ETRAXTimerState {
SysBusDevice busdev;
MemoryRegion mmio;
qemu_irq irq;
Expand Down Expand Up @@ -72,12 +72,12 @@ struct etrax_timer {
uint32_t rw_ack_intr;
uint32_t r_intr;
uint32_t r_masked_intr;
};
} ETRAXTimerState;

static uint64_t
timer_read(void *opaque, hwaddr addr, unsigned int size)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;
uint32_t r = 0;

switch (addr) {
Expand All @@ -103,7 +103,7 @@ timer_read(void *opaque, hwaddr addr, unsigned int size)
return r;
}

static void update_ctrl(struct etrax_timer *t, int tnum)
static void update_ctrl(ETRAXTimerState *t, int tnum)
{
unsigned int op;
unsigned int freq;
Expand Down Expand Up @@ -167,7 +167,7 @@ static void update_ctrl(struct etrax_timer *t, int tnum)
}
}

static void timer_update_irq(struct etrax_timer *t)
static void timer_update_irq(ETRAXTimerState *t)
{
t->r_intr &= ~(t->rw_ack_intr);
t->r_masked_intr = t->r_intr & t->rw_intr_mask;
Expand All @@ -178,21 +178,21 @@ static void timer_update_irq(struct etrax_timer *t)

static void timer0_hit(void *opaque)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;
t->r_intr |= 1;
timer_update_irq(t);
}

static void timer1_hit(void *opaque)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;
t->r_intr |= 2;
timer_update_irq(t);
}

static void watchdog_hit(void *opaque)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;
if (t->wd_hits == 0) {
/* real hw gives a single tick before reseting but we are
a bit friendlier to compensate for our slower execution. */
Expand All @@ -206,7 +206,7 @@ static void watchdog_hit(void *opaque)
t->wd_hits++;
}

static inline void timer_watchdog_update(struct etrax_timer *t, uint32_t value)
static inline void timer_watchdog_update(ETRAXTimerState *t, uint32_t value)
{
unsigned int wd_en = t->rw_wd_ctrl & (1 << 8);
unsigned int wd_key = t->rw_wd_ctrl >> 9;
Expand Down Expand Up @@ -245,7 +245,7 @@ static void
timer_write(void *opaque, hwaddr addr,
uint64_t val64, unsigned int size)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;
uint32_t value = val64;

switch (addr)
Expand Down Expand Up @@ -298,7 +298,7 @@ static const MemoryRegionOps timer_ops = {

static void etraxfs_timer_reset(void *opaque)
{
struct etrax_timer *t = opaque;
ETRAXTimerState *t = opaque;

ptimer_stop(t->ptimer_t0);
ptimer_stop(t->ptimer_t1);
Expand All @@ -311,7 +311,7 @@ static void etraxfs_timer_reset(void *opaque)

static int etraxfs_timer_init(SysBusDevice *dev)
{
struct etrax_timer *t = FROM_SYSBUS(typeof (*t), dev);
ETRAXTimerState *t = FROM_SYSBUS(typeof (*t), dev);

t->bh_t0 = qemu_bh_new(timer0_hit, t);
t->bh_t1 = qemu_bh_new(timer1_hit, t);
Expand Down Expand Up @@ -340,7 +340,7 @@ static void etraxfs_timer_class_init(ObjectClass *klass, void *data)
static const TypeInfo etraxfs_timer_info = {
.name = "etraxfs,timer",
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof (struct etrax_timer),
.instance_size = sizeof(ETRAXTimerState),
.class_init = etraxfs_timer_class_init,
};

Expand Down

0 comments on commit 3c9a8a8

Please sign in to comment.