Skip to content

Commit

Permalink
ARM minor irq handler cleanup: avoid passing unused info to irq
Browse files Browse the repository at this point in the history
Reduce human confusion a bit, by /not/ passing an unused value to
arm_rtc_interrupt()

Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
  • Loading branch information
Jeff Garzik authored and Jeff Garzik committed Apr 20, 2008
1 parent 3925e6f commit 90968eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-integrator/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static int rtc_probe(struct amba_device *dev, void *id)
xtime.tv_sec = __raw_readl(rtc_base + RTC_DR);

ret = request_irq(dev->irq[0], arm_rtc_interrupt, IRQF_DISABLED,
"rtc-pl030", dev);
"rtc-pl030", NULL);
if (ret)
goto map_out;

Expand Down

0 comments on commit 90968eb

Please sign in to comment.