Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e2f8165d
Commit
e2f8165d
authored
Mar 28, 2006
by
Jody McIntyre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: Jody McIntyre <scjody@modernduck.com>
parent
147830f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
drivers/ieee1394/ohci1394.c
drivers/ieee1394/ohci1394.c
+5
-3
No files found.
drivers/ieee1394/ohci1394.c
View file @
e2f8165d
...
...
@@ -572,6 +572,7 @@ static void ohci_initialize(struct ti_ohci *ohci)
OHCI1394_reqTxComplete
|
OHCI1394_isochRx
|
OHCI1394_isochTx
|
OHCI1394_postedWriteErr
|
OHCI1394_cycleInconsistent
);
/* Enable link */
...
...
@@ -2374,7 +2375,10 @@ static irqreturn_t ohci_irq_handler(int irq, void *dev_id,
event
&=
~
OHCI1394_unrecoverableError
;
}
if
(
event
&
OHCI1394_postedWriteErr
)
{
PRINT
(
KERN_ERR
,
"physical posted write error"
);
/* no recovery strategy yet, had to involve protocol drivers */
}
if
(
event
&
OHCI1394_cycleInconsistent
)
{
/* We subscribe to the cycleInconsistent event only to
* clear the corresponding event bit... otherwise,
...
...
@@ -2382,7 +2386,6 @@ static irqreturn_t ohci_irq_handler(int irq, void *dev_id,
DBGMSG
(
"OHCI1394_cycleInconsistent"
);
event
&=
~
OHCI1394_cycleInconsistent
;
}
if
(
event
&
OHCI1394_busReset
)
{
/* The busReset event bit can't be cleared during the
* selfID phase, so we disable busReset interrupts, to
...
...
@@ -2426,7 +2429,6 @@ static irqreturn_t ohci_irq_handler(int irq, void *dev_id,
}
event
&=
~
OHCI1394_busReset
;
}
if
(
event
&
OHCI1394_reqTxComplete
)
{
struct
dma_trm_ctx
*
d
=
&
ohci
->
at_req_context
;
DBGMSG
(
"Got reqTxComplete interrupt "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment