projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21b2c56
)
ieee1394: ohci1394: fix cosmetic problem in error logging
author
Stefan Richter
<stefanr@s5r6.in-berlin.de>
Thu, 12 Apr 2007 20:21:55 +0000
(22:21 +0200)
committer
Stefan Richter
<stefanr@s5r6.in-berlin.de>
Sun, 29 Apr 2007 22:00:32 +0000
(
00:00
+0200)
If posted write failed, an "Unhandled interrupt(s) 0x00000100" message
was logged by mistake.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
drivers/ieee1394/ohci1394.c
patch
|
blob
|
history
diff --git
a/drivers/ieee1394/ohci1394.c
b/drivers/ieee1394/ohci1394.c
index
6833b98
..
d91ef33
100644
(file)
--- a/
drivers/ieee1394/ohci1394.c
+++ b/
drivers/ieee1394/ohci1394.c
@@
-2377,6
+2377,7
@@
static irqreturn_t ohci_irq_handler(int irq, void *dev_id)
if (event & OHCI1394_postedWriteErr) {
PRINT(KERN_ERR, "physical posted write error");
/* no recovery strategy yet, had to involve protocol drivers */
+ event &= ~OHCI1394_postedWriteErr;
}
if (event & OHCI1394_cycleTooLong) {
if(printk_ratelimit())