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
8e457d6a
Commit
8e457d6a
authored
Sep 04, 2013
by
Vineet Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARC: Annotate some functions as static
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
6855e95c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
arch/arc/kernel/setup.c
arch/arc/kernel/setup.c
+5
-6
No files found.
arch/arc/kernel/setup.c
View file @
8e457d6a
...
@@ -37,8 +37,7 @@ struct task_struct *_current_task[NR_CPUS]; /* For stack switching */
...
@@ -37,8 +37,7 @@ struct task_struct *_current_task[NR_CPUS]; /* For stack switching */
struct
cpuinfo_arc
cpuinfo_arc700
[
NR_CPUS
];
struct
cpuinfo_arc
cpuinfo_arc700
[
NR_CPUS
];
static
void
read_arc_build_cfg_regs
(
void
)
void
read_arc_build_cfg_regs
(
void
)
{
{
struct
bcr_perip
uncached_space
;
struct
bcr_perip
uncached_space
;
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
...
@@ -106,7 +105,7 @@ static const struct cpuinfo_data arc_cpu_tbl[] = {
...
@@ -106,7 +105,7 @@ static const struct cpuinfo_data arc_cpu_tbl[] = {
{
{
0x00
,
NULL
}
}
{
{
0x00
,
NULL
}
}
};
};
char
*
arc_cpu_mumbojumbo
(
int
cpu_id
,
char
*
buf
,
int
len
)
static
char
*
arc_cpu_mumbojumbo
(
int
cpu_id
,
char
*
buf
,
int
len
)
{
{
int
n
=
0
;
int
n
=
0
;
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
cpu_id
];
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
cpu_id
];
...
@@ -171,7 +170,7 @@ static const struct id_to_str mac_mul_nm[] = {
...
@@ -171,7 +170,7 @@ static const struct id_to_str mac_mul_nm[] = {
{
0x6
,
"Dual 16x16 and 32x16"
}
{
0x6
,
"Dual 16x16 and 32x16"
}
};
};
char
*
arc_extn_mumbojumbo
(
int
cpu_id
,
char
*
buf
,
int
len
)
static
char
*
arc_extn_mumbojumbo
(
int
cpu_id
,
char
*
buf
,
int
len
)
{
{
int
n
=
0
;
int
n
=
0
;
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
cpu_id
];
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
cpu_id
];
...
@@ -234,7 +233,7 @@ char *arc_extn_mumbojumbo(int cpu_id, char *buf, int len)
...
@@ -234,7 +233,7 @@ char *arc_extn_mumbojumbo(int cpu_id, char *buf, int len)
return
buf
;
return
buf
;
}
}
void
arc_chk_ccms
(
void
)
static
void
arc_chk_ccms
(
void
)
{
{
#if defined(CONFIG_ARC_HAS_DCCM) || defined(CONFIG_ARC_HAS_ICCM)
#if defined(CONFIG_ARC_HAS_DCCM) || defined(CONFIG_ARC_HAS_ICCM)
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
...
@@ -269,7 +268,7 @@ void arc_chk_ccms(void)
...
@@ -269,7 +268,7 @@ void arc_chk_ccms(void)
* hardware has dedicated regs which need to be saved/restored on ctx-sw
* hardware has dedicated regs which need to be saved/restored on ctx-sw
* (Single Precision uses core regs), thus kernel is kind of oblivious to it
* (Single Precision uses core regs), thus kernel is kind of oblivious to it
*/
*/
void
arc_chk_fpu
(
void
)
static
void
arc_chk_fpu
(
void
)
{
{
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
struct
cpuinfo_arc
*
cpu
=
&
cpuinfo_arc700
[
smp_processor_id
()];
...
...
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