Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68320
b: refs/heads/master
c: 948d12c
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Gleixner authored and Paul Mundt committed Oct 3, 2007
1 parent 6176e54 commit bc93f75
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 090495b54fabc88169aedebb2b3831a3b9ef174c
refs/heads/master: 948d12cbc30b85dc9effbaaf506b2eeefaefea07
14 changes: 12 additions & 2 deletions trunk/arch/sh64/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,18 @@ static irqreturn_t sh64_rtc_interrupt(int irq, void *dev_id)
return IRQ_HANDLED;
}

static struct irqaction irq0 = { timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL};
static struct irqaction irq1 = { sh64_rtc_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "rtc", NULL, NULL};
static struct irqaction irq0 = {
.handler = timer_interrupt,
.flags = IRQF_DISABLED,
.mask = CPU_MASK_NONE,
.name = "timer",
};
static struct irqaction irq1 = {
.handler = sh64_rtc_interrupt,
.flags = IRQF_DISABLED,
.mask = CPU_MASK_NONE,
.name = "rtc",
};

void __init time_init(void)
{
Expand Down

0 comments on commit bc93f75

Please sign in to comment.