Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249993
b: refs/heads/master
c: 4bd66cf
h: refs/heads/master
i:
  249991: 8b62087
v: v3
  • Loading branch information
Colin Cross authored and Will Deacon committed May 11, 2011
1 parent e816dcf commit 493f0a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d1d8c666683cdbef18329ff8f3743ddaca8842ee
refs/heads/master: 4bd66cfde5c3b6eced0da483c6357ae46d3adbb5
9 changes: 9 additions & 0 deletions trunk/arch/arm/mach-tegra/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ static void tegra_ack(struct irq_data *d)
tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR);
}

static void tegra_eoi(struct irq_data *d)
{
if (d->irq < FIRST_LEGACY_IRQ)
return;

tegra_irq_write_mask(d->irq, ICTLR_CPU_IEP_FIR_CLR);
}

static int tegra_retrigger(struct irq_data *d)
{
if (d->irq < FIRST_LEGACY_IRQ)
Expand All @@ -116,6 +124,7 @@ void __init tegra_init_irq(void)
}

gic_arch_extn.irq_ack = tegra_ack;
gic_arch_extn.irq_eoi = tegra_eoi;
gic_arch_extn.irq_mask = tegra_mask;
gic_arch_extn.irq_unmask = tegra_unmask;
gic_arch_extn.irq_retrigger = tegra_retrigger;
Expand Down

0 comments on commit 493f0a5

Please sign in to comment.