Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90968eb5 authored by Jeff Garzik's avatar Jeff Garzik Committed by Jeff Garzik
Browse files

ARM minor irq handler cleanup: avoid passing unused info to irq



Reduce human confusion a bit, by /not/ passing an unused value to
arm_rtc_interrupt()

Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 3925e6fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -125,7 +125,7 @@ static int rtc_probe(struct amba_device *dev, void *id)
	xtime.tv_sec = __raw_readl(rtc_base + RTC_DR);
	xtime.tv_sec = __raw_readl(rtc_base + RTC_DR);


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