From patchwork Tue Aug 31 12:25:50 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: RTC: do not mark PL031 IRQ as shared Date: Tue, 31 Aug 2010 02:25:50 -0000 From: Linus Walleij X-Patchwork-Id: 63239 Message-Id: <1283257550-5697-1-git-send-email-linus.walleij@stericsson.com> To: Alessandro Zummo , Cc: Linus Walleij , Jonas Aberg , Mian Yousaf Kaukab It was a mistake to mark the PL031 IRQ as shared (for the U8500), we misread the datasheet. Get rid of this. Cc: Jonas Aberg Cc: Mian Yousaf Kaukab Signed-off-by: Linus Walleij --- drivers/rtc/rtc-pl031.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c index 6c418fe..b7a6690 100644 --- a/drivers/rtc/rtc-pl031.c +++ b/drivers/rtc/rtc-pl031.c @@ -403,7 +403,7 @@ static int pl031_probe(struct amba_device *adev, struct amba_id *id) } if (request_irq(adev->irq[0], pl031_interrupt, - IRQF_DISABLED | IRQF_SHARED, "rtc-pl031", ldata)) { + IRQF_DISABLED, "rtc-pl031", ldata)) { ret = -EIO; goto out_no_irq; }