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
c3379065
Commit
c3379065
authored
Aug 12, 2003
by
Chas Williams
Committed by
Stephen Hemminger
Aug 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ATM]: Cleanup/minor fixes to interrupt handler of LANAI driver (from mitch@sfgoth.com).
parent
654b80be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
13 deletions
+20
-13
drivers/atm/lanai.c
drivers/atm/lanai.c
+20
-13
No files found.
drivers/atm/lanai.c
View file @
c3379065
...
...
@@ -1996,24 +1996,31 @@ static irqreturn_t lanai_int(int irq, void *devid, struct pt_regs *regs)
{
struct
lanai_dev
*
lanai
=
(
struct
lanai_dev
*
)
devid
;
u32
reason
;
int
handled
=
0
;
(
void
)
irq
;
(
void
)
regs
;
/* unused variables */
#ifdef USE_POWERDOWN
if
(
unlikely
(
lanai
->
conf1
&
CONFIG1_POWERDOWN
))
{
lanai
->
conf1
&=
~
CONFIG1_POWERDOWN
;
conf1_write
(
lanai
);
printk
(
KERN_WARNING
DEV_LABEL
"(itf %d): Got interrupt "
"0x%08X while in POWERDOWN, powering up
\n
"
,
lanai
->
number
,
(
unsigned
int
)
intr_pending
(
lanai
));
conf2_write
(
lanai
);
}
/*
* If we're powered down we shouldn't be generating any interrupts -
* so assume that this is a shared interrupt line and it's for someone
* else
*/
if
(
unlikely
(
lanai
->
conf1
&
CONFIG1_POWERDOWN
))
return
IRQ_NONE
;
#endif
while
((
reason
=
intr_pending
(
lanai
))
!=
0
)
{
handled
=
1
;
reason
=
intr_pending
(
lanai
);
if
(
reason
==
0
)
return
IRQ_NONE
;
/* Must be for someone else */
do
{
if
(
unlikely
(
reason
==
0xFFFFFFFF
))
break
;
/* Maybe we've been unplugged? */
lanai_int_1
(
lanai
,
reason
);
}
return
IRQ_RETVAL
(
handled
);
reason
=
intr_pending
(
lanai
);
}
while
(
reason
!=
0
);
return
IRQ_HANDLED
;
}
/* TODO - it would be nice if we could use the "delayed interrupt" system
...
...
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