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
5086c6c8
Commit
5086c6c8
authored
Jan 21, 2012
by
Kukjin Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: S3C64XX: use static declaration when it is not used in other files
Signed-off-by:
Kukjin Kim
<
kgene.kim@samsung.com
>
parent
4cfb7b7c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
arch/arm/mach-s3c64xx/common.c
arch/arm/mach-s3c64xx/common.c
+1
-1
arch/arm/mach-s3c64xx/common.h
arch/arm/mach-s3c64xx/common.h
+0
-2
arch/arm/mach-s3c64xx/irq-pm.c
arch/arm/mach-s3c64xx/irq-pm.c
+1
-1
No files found.
arch/arm/mach-s3c64xx/common.c
View file @
5086c6c8
...
...
@@ -49,7 +49,7 @@
/* uart registration process */
void
__init
s3c64xx_init_uarts
(
struct
s3c2410_uartcfg
*
cfg
,
int
no
)
static
void
__init
s3c64xx_init_uarts
(
struct
s3c2410_uartcfg
*
cfg
,
int
no
)
{
s3c24xx_init_uartdevs
(
"s3c6400-uart"
,
s3c64xx_uart_resources
,
cfg
,
no
);
}
...
...
arch/arm/mach-s3c64xx/common.h
View file @
5086c6c8
...
...
@@ -25,8 +25,6 @@ void s3c64xx_setup_clocks(void);
void
s3c64xx_restart
(
char
mode
,
const
char
*
cmd
);
extern
struct
syscore_ops
s3c64xx_irq_syscore_ops
;
#ifdef CONFIG_CPU_S3C6400
extern
int
s3c6400_init
(
void
);
...
...
arch/arm/mach-s3c64xx/irq-pm.c
View file @
5086c6c8
...
...
@@ -96,7 +96,7 @@ static void s3c64xx_irq_pm_resume(void)
S3C_PMDBG
(
"%s: IRQ configuration restored
\n
"
,
__func__
);
}
struct
syscore_ops
s3c64xx_irq_syscore_ops
=
{
st
atic
st
ruct
syscore_ops
s3c64xx_irq_syscore_ops
=
{
.
suspend
=
s3c64xx_irq_pm_suspend
,
.
resume
=
s3c64xx_irq_pm_resume
,
};
...
...
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