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
ec70f65e
Commit
ec70f65e
authored
Oct 11, 2007
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Kill useless volatile keyword
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
b47bd961
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
arch/mips/kernel/traps.c
arch/mips/kernel/traps.c
+2
-2
No files found.
arch/mips/kernel/traps.c
View file @
ec70f65e
...
...
@@ -1075,8 +1075,8 @@ void *set_except_vector(int n, void *addr)
exception_handlers
[
n
]
=
handler
;
if
(
n
==
0
&&
cpu_has_divec
)
{
*
(
volatile
u32
*
)(
ebase
+
0x200
)
=
0x08000000
|
(
0x03ffffff
&
(
handler
>>
2
));
*
(
u32
*
)(
ebase
+
0x200
)
=
0x08000000
|
(
0x03ffffff
&
(
handler
>>
2
));
flush_icache_range
(
ebase
+
0x200
,
ebase
+
0x204
);
}
return
(
void
*
)
old_handler
;
...
...
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