Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 372263
b: refs/heads/master
c: 3b8dfa7
h: refs/heads/master
i:
  372261: 026c088
  372259: 72dca30
  372255: 6e99acc
v: v3
  • Loading branch information
Magnus Damm authored and Simon Horman committed Mar 18, 2013
1 parent 80c9f6d commit c481aa3
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: 9d833bbe49953a9a07f9ebd7a9ad170c308bd692
refs/heads/master: 3b8dfa7c2f8af7613dae28ac0f3419bf75ead5d0
9 changes: 9 additions & 0 deletions trunk/drivers/irqchip/irq-renesas-irqc.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ static int irqc_irq_domain_map(struct irq_domain *h, unsigned int virq,

static struct irq_domain_ops irqc_irq_domain_ops = {
.map = irqc_irq_domain_map,
.xlate = irq_domain_xlate_twocell,
};

static int irqc_probe(struct platform_device *pdev)
Expand Down Expand Up @@ -273,11 +274,19 @@ static int irqc_remove(struct platform_device *pdev)
return 0;
}

static const struct of_device_id irqc_dt_ids[] = {
{ .compatible = "renesas,irqc", },
{},
};
MODULE_DEVICE_TABLE(of, irqc_dt_ids);

static struct platform_driver irqc_device_driver = {
.probe = irqc_probe,
.remove = irqc_remove,
.driver = {
.name = "renesas_irqc",
.of_match_table = irqc_dt_ids,
.owner = THIS_MODULE,
}
};

Expand Down

0 comments on commit c481aa3

Please sign in to comment.