drivers/rtc/rtc-pl031.c: do not mark PL031 IRQ as shared
authorLinus Walleij <[email protected]>
Thu, 9 Sep 2010 23:38:04 +0000 (16:38 -0700)
committerLinus Torvalds <[email protected]>
Fri, 10 Sep 2010 01:57:24 +0000 (18:57 -0700)
It was a mistake to mark the PL031 IRQ as shared (for the U8500),
we misread the datasheet. Get rid of this.

Signed-off-by: Linus Walleij <[email protected]>
Cc: Jonas Aberg <[email protected]>
Cc: Mian Yousaf Kaukab <[email protected]>
Acked-by: Alessandro Zummo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-pl031.c

index 6c418fe7f288ae2deaa9f44080a749a9eaafad88..b7a6690e5b35e8744295bf212a8e0d75e0d8dd6f 100644 (file)
@@ -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;
        }