Skip to content

Commit

Permalink
clocksource/drivers/h8300_timer8: Remove irq and lock legacy code
Browse files Browse the repository at this point in the history
The time framawork takes care of disabling the interrupts and takes a lock
to prevent races.

Remove the legacy code in the driver taking care of the races.

Signed-off-by: Daniel Lezcano <[email protected]>
  • Loading branch information
dlezcano committed Dec 15, 2015
1 parent 7053fda commit 254d8b5
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions drivers/clocksource/h8300_timer8.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
struct timer8_priv {
struct clock_event_device ced;
unsigned long mapbase;
raw_spinlock_t lock;
unsigned long flags;
unsigned int rate;
unsigned int tcora;
Expand Down Expand Up @@ -78,10 +77,8 @@ static irqreturn_t timer8_interrupt(int irq, void *dev_id)

static void timer8_set_next(struct timer8_priv *p, unsigned long delta)
{
unsigned long flags;
unsigned long now;

raw_spin_lock_irqsave(&p->lock, flags);
if (delta >= 0x10000)
pr_warn("delta out of range\n");
now = timer8_get_counter(p);
Expand All @@ -91,8 +88,6 @@ static void timer8_set_next(struct timer8_priv *p, unsigned long delta)
ctrl_outw(delta, p->mapbase + TCORA);
else
ctrl_outw(now + 1, p->mapbase + TCORA);

raw_spin_unlock_irqrestore(&p->lock, flags);
}

static int timer8_enable(struct timer8_priv *p)
Expand All @@ -108,9 +103,6 @@ static int timer8_enable(struct timer8_priv *p)
static int timer8_start(struct timer8_priv *p)
{
int ret = 0;
unsigned long flags;

raw_spin_lock_irqsave(&p->lock, flags);

if (!(p->flags & FLAG_STARTED))
ret = timer8_enable(p);
Expand All @@ -120,20 +112,12 @@ static int timer8_start(struct timer8_priv *p)
p->flags |= FLAG_STARTED;

out:
raw_spin_unlock_irqrestore(&p->lock, flags);

return ret;
}

static void timer8_stop(struct timer8_priv *p)
{
unsigned long flags;

raw_spin_lock_irqsave(&p->lock, flags);

ctrl_outw(0x0000, p->mapbase + _8TCR);

raw_spin_unlock_irqrestore(&p->lock, flags);
}

static inline struct timer8_priv *ced_to_priv(struct clock_event_device *ced)
Expand Down

0 comments on commit 254d8b5

Please sign in to comment.