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
f583ffce
Commit
f583ffce
authored
Oct 10, 2006
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[POWERPC] Fix xmon IRQ handler for pt_regs removal
Signed-off-by:
Paul Mackerras
<
paulus@samba.org
>
parent
81e859ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/powerpc/xmon/xmon.c
arch/powerpc/xmon/xmon.c
+3
-3
No files found.
arch/powerpc/xmon/xmon.c
View file @
f583ffce
...
...
@@ -36,6 +36,7 @@
#include <asm/rtas.h>
#include <asm/sstep.h>
#include <asm/bug.h>
#include <asm/irq_regs.h>
#ifdef CONFIG_PPC64
#include <asm/hvcall.h>
...
...
@@ -521,13 +522,12 @@ int xmon(struct pt_regs *excp)
}
EXPORT_SYMBOL
(
xmon
);
irqreturn_t
xmon_irq
(
int
irq
,
void
*
d
,
struct
pt_regs
*
regs
)
irqreturn_t
xmon_irq
(
int
irq
,
void
*
d
)
{
unsigned
long
flags
;
local_irq_save
(
flags
);
printf
(
"Keyboard interrupt
\n
"
);
xmon
(
regs
);
xmon
(
get_irq_regs
()
);
local_irq_restore
(
flags
);
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