Commit 6bff5fb8 authored by Michael Hennerich's avatar Michael Hennerich Committed by Linus Torvalds

rtc-bfin: do not share RTC IRQ

The Blackfin RTC IRQ is an internal interrupt, so it makes no sense to
have it be shared.
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarAlessandro Zummo <a.zummo@towertech.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ad91fd85
...@@ -383,7 +383,7 @@ static int __devinit bfin_rtc_probe(struct platform_device *pdev) ...@@ -383,7 +383,7 @@ static int __devinit bfin_rtc_probe(struct platform_device *pdev)
} }
/* Grab the IRQ and init the hardware */ /* Grab the IRQ and init the hardware */
ret = request_irq(IRQ_RTC, bfin_rtc_interrupt, IRQF_SHARED, pdev->name, dev); ret = request_irq(IRQ_RTC, bfin_rtc_interrupt, 0, pdev->name, dev);
if (unlikely(ret)) if (unlikely(ret))
goto err_reg; goto err_reg;
/* sometimes the bootloader touched things, but the write complete was not /* sometimes the bootloader touched things, but the write complete was not
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment