diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-05-16 08:44:23 -0400 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2014-05-19 10:15:17 -0400 |
commit | c54697ae180e652a96db8bc71f0c7c7baee2bf16 (patch) | |
tree | 02843f3b4a462106b14fa96f19c40301b13e27bf /drivers/clocksource/sh_tmu.c | |
parent | 346f5e76b3822a2530a03f33b00ee89dfc463326 (diff) |
clocksource: sh_tmu: Fix channel IRQ retrieval in legacy case
In the legacy platform data case each TMU platform device handles a
single channel with a single IRQ for the platform device. Retrieve the
IRQ using the logical channel number instead of the hardware channel
number.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource/sh_tmu.c')
-rw-r--r-- | drivers/clocksource/sh_tmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c index 4ba2c0fea580..ec340955e852 100644 --- a/drivers/clocksource/sh_tmu.c +++ b/drivers/clocksource/sh_tmu.c | |||
@@ -498,7 +498,7 @@ static int sh_tmu_channel_setup(struct sh_tmu_channel *ch, unsigned int index, | |||
498 | ch->base = tmu->mapbase + 8 + ch->index * 12; | 498 | ch->base = tmu->mapbase + 8 + ch->index * 12; |
499 | } | 499 | } |
500 | 500 | ||
501 | ch->irq = platform_get_irq(tmu->pdev, ch->index); | 501 | ch->irq = platform_get_irq(tmu->pdev, index); |
502 | if (ch->irq < 0) { | 502 | if (ch->irq < 0) { |
503 | dev_err(&tmu->pdev->dev, "ch%u: failed to get irq\n", | 503 | dev_err(&tmu->pdev->dev, "ch%u: failed to get irq\n", |
504 | ch->index); | 504 | ch->index); |