Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
kernel
Commits
5f8b0044
Verified
Commit
5f8b0044
authored
4 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo in InterruptStack parameter
parent
252ec249
No related branches found
Branches containing commit
No related tags found
1 merge request
!156
WIP: aarch64 support
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/arch/aarch64/interrupt/handler.rs
+2
-2
2 additions, 2 deletions
src/arch/aarch64/interrupt/handler.rs
with
2 additions
and
2 deletions
src/arch/aarch64/interrupt/handler.rs
+
2
−
2
View file @
5f8b0044
...
...
@@ -86,7 +86,7 @@ impl PreservedRegisters {
pub
struct
InterruptStack
{
pub
elr_el1
:
usize
,
//TODO: should this push be removed?
pub
unk
k
nown
:
usize
,
pub
unknown
:
usize
,
pub
tpidr_el0
:
usize
,
pub
tpidrro_el0
:
usize
,
pub
spsr_el1
:
usize
,
...
...
@@ -106,7 +106,7 @@ impl InterruptStack {
println!
(
"SPSR_EL1: {:>016X}"
,
{
self
.spsr_el1
});
println!
(
"TPIDRRO_EL0: {:>016X}"
,
{
self
.tpidrro_el0
});
println!
(
"TPIDR_EL0: {:>016X}"
,
{
self
.tpidr_el0
});
println!
(
"UNKNOWN: {:>016X}"
,
{
self
.unk
k
nown
});
println!
(
"UNKNOWN: {:>016X}"
,
{
self
.unknown
});
println!
(
"ELR_EL1: {:>016X}"
,
{
self
.elr_el1
});
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment