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
0118c3ca
Commit
0118c3ca
authored
Jun 05, 2006
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Malta: Fix build for non-MIPS32/64 configuration.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
12a0a703
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
arch/mips/mips-boards/malta/malta_int.c
arch/mips/mips-boards/malta/malta_int.c
+6
-6
No files found.
arch/mips/mips-boards/malta/malta_int.c
View file @
0118c3ca
...
...
@@ -212,23 +212,23 @@ static inline unsigned int irq_ffs(unsigned int pending)
unsigned
int
a0
=
7
;
unsigned
int
t0
;
t0
=
s0
&
0xf000
;
t0
=
pending
&
0xf000
;
t0
=
t0
<
1
;
t0
=
t0
<<
2
;
a0
=
a0
-
t0
;
s0
=
s0
<<
t0
;
pending
=
pending
<<
t0
;
t0
=
s0
&
0xc000
;
t0
=
pending
&
0xc000
;
t0
=
t0
<
1
;
t0
=
t0
<<
1
;
a0
=
a0
-
t0
;
s0
=
s0
<<
t0
;
pending
=
pending
<<
t0
;
t0
=
s0
&
0x8000
;
t0
=
pending
&
0x8000
;
t0
=
t0
<
1
;
//t0 = t0 << 2;
a0
=
a0
-
t0
;
//
s0 = s0
<< t0;
//
pending = pending
<< t0;
return
a0
;
#endif
...
...
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