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
Kirill Smelkov
linux
Commits
efaa534e
Commit
efaa534e
authored
Jul 27, 2007
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] SMTC: smtc_timer_broadcast ignores its arguments, make it void.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
97aef63c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
arch/mips/kernel/smtc.c
arch/mips/kernel/smtc.c
+1
-1
arch/mips/mips-boards/generic/time.c
arch/mips/mips-boards/generic/time.c
+2
-2
No files found.
arch/mips/kernel/smtc.c
View file @
efaa534e
...
...
@@ -876,7 +876,7 @@ void deferred_smtc_ipi(void)
* Send clock tick to all TCs except the one executing the funtion
*/
void
smtc_timer_broadcast
(
int
vpe
)
void
smtc_timer_broadcast
(
void
)
{
int
cpu
;
int
myTC
=
cpu_data
[
smp_processor_id
()].
tc_id
;
...
...
arch/mips/mips-boards/generic/time.c
View file @
efaa534e
...
...
@@ -55,7 +55,7 @@ unsigned long cpu_khz;
static
int
mips_cpu_timer_irq
;
extern
int
cp0_perfcount_irq
;
extern
void
smtc_timer_broadcast
(
int
);
extern
void
smtc_timer_broadcast
(
void
);
static
void
mips_timer_dispatch
(
void
)
{
...
...
@@ -131,7 +131,7 @@ irqreturn_t mips_timer_interrupt(int irq, void *dev_id)
(
mips_hpt_frequency
/
HZ
));
local_timer_interrupt
(
irq
,
dev_id
);
}
smtc_timer_broadcast
(
cpu_data
[
cpu
].
vpe_id
);
smtc_timer_broadcast
();
}
#else
/* CONFIG_MIPS_MT_SMTC */
int
r2
=
cpu_has_mips_r2
;
...
...
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