projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7bbbf3
)
drivers/rtc/rtc-pl031.c: do not mark PL031 IRQ as shared
author
Linus Walleij
<
[email protected]
>
Thu, 9 Sep 2010 23:38:04 +0000
(16:38 -0700)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-pl031.c
b/drivers/rtc/rtc-pl031.c
index 6c418fe7f288ae2deaa9f44080a749a9eaafad88..b7a6690e5b35e8744295bf212a8e0d75e0d8dd6f 100644
(file)
--- 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;
}