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
a74b4605
Commit
a74b4605
authored
Jul 12, 2007
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] MIPSsim: Fix build.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
89164940
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
arch/mips/mipssim/sim_int.c
arch/mips/mipssim/sim_int.c
+1
-1
arch/mips/mipssim/sim_setup.c
arch/mips/mipssim/sim_setup.c
+1
-1
arch/mips/mipssim/sim_time.c
arch/mips/mipssim/sim_time.c
+0
-1
No files found.
arch/mips/mipssim/sim_int.c
View file @
a74b4605
...
...
@@ -77,7 +77,7 @@ asmlinkage void plat_irq_dispatch(void)
irq
=
irq_ffs
(
pending
);
if
(
irq
>
0
)
do_IRQ
(
MIPS
CPU_INT
_BASE
+
irq
);
do_IRQ
(
MIPS
_CPU_IRQ
_BASE
+
irq
);
else
spurious_interrupt
();
}
...
...
arch/mips/mipssim/sim_setup.c
View file @
a74b4605
...
...
@@ -84,7 +84,7 @@ static void __init serial_init(void)
/* hardware int 4 - the serial int, is CPU int 6
but poll for now */
s
.
irq
=
0
;
s
.
uartclk
=
BASE_BAUD
*
16
;
s
.
uartclk
=
1843200
;
s
.
flags
=
UPF_BOOT_AUTOCONF
|
UPF_SKIP_TEST
;
s
.
iotype
=
UPIO_PORT
;
s
.
regshift
=
0
;
...
...
arch/mips/mipssim/sim_time.c
View file @
a74b4605
...
...
@@ -5,7 +5,6 @@
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/mc146818rtc.h>
#include <linux/mipsregs.h>
#include <linux/smp.h>
#include <linux/timex.h>
...
...
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