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
b3f8c3ec
Commit
b3f8c3ec
authored
Sep 28, 2003
by
Geert Uytterhoeven
Committed by
Linus Torvalds
Sep 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Q40/Q60 interrupts
Q40/Q60: Fix warnings, add diagnostic message (from Richard Zidlicky)
parent
279a5636
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
arch/m68k/q40/q40ints.c
arch/m68k/q40/q40ints.c
+3
-1
No files found.
arch/m68k/q40/q40ints.c
View file @
b3f8c3ec
...
...
@@ -200,7 +200,9 @@ void q40_free_irq(unsigned int irq, void *dev_id)
irqreturn_t
q40_process_int
(
int
level
,
struct
pt_regs
*
fp
)
{
printk
(
"unexpected interrupt %x
\n
"
,
level
);
printk
(
"unexpected interrupt vec=%x, pc=%lx, d0=%lx, d0_orig=%lx, d1=%lx, d2=%lx
\n
"
,
level
,
fp
->
pc
,
fp
->
d0
,
fp
->
orig_d0
,
fp
->
d1
,
fp
->
d2
);
printk
(
"
\t
IIRQ_REG = %x, EIRQ_REG = %x
\n
"
,
master_inb
(
IIRQ_REG
),
master_inb
(
EIRQ_REG
));
return
IRQ_HANDLED
;
}
...
...
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