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
2728701d
Commit
2728701d
authored
Jul 15, 2010
by
Eric Miao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] mmp: move declarations into SoC specific header file from common.h
Signed-off-by:
Eric Miao
<
eric.y.miao@gmail.com
>
parent
f7426f53
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
9 deletions
+19
-9
arch/arm/mach-mmp/common.h
arch/arm/mach-mmp/common.h
+0
-9
arch/arm/mach-mmp/include/mach/mmp2.h
arch/arm/mach-mmp/include/mach/mmp2.h
+7
-0
arch/arm/mach-mmp/include/mach/pxa168.h
arch/arm/mach-mmp/include/mach/pxa168.h
+5
-0
arch/arm/mach-mmp/include/mach/pxa910.h
arch/arm/mach-mmp/include/mach/pxa910.h
+5
-0
arch/arm/mach-mmp/irq-mmp2.c
arch/arm/mach-mmp/irq-mmp2.c
+1
-0
arch/arm/mach-mmp/mmp2.c
arch/arm/mach-mmp/mmp2.c
+1
-0
No files found.
arch/arm/mach-mmp/common.h
View file @
2728701d
...
...
@@ -3,15 +3,6 @@
struct
sys_timer
;
extern
void
timer_init
(
int
irq
);
extern
void
mmp2_clear_pmic_int
(
void
);
extern
struct
sys_timer
pxa168_timer
;
extern
struct
sys_timer
pxa910_timer
;
extern
struct
sys_timer
mmp2_timer
;
extern
void
__init
pxa168_init_irq
(
void
);
extern
void
__init
pxa910_init_irq
(
void
);
extern
void
__init
mmp2_init_icu
(
void
);
extern
void
__init
mmp2_init_irq
(
void
);
extern
void
__init
icu_init_irq
(
void
);
extern
void
__init
mmp_map_io
(
void
);
arch/arm/mach-mmp/include/mach/mmp2.h
View file @
2728701d
#ifndef __ASM_MACH_MMP2_H
#define __ASM_MACH_MMP2_H
struct
sys_timer
;
extern
struct
sys_timer
mmp2_timer
;
extern
void
__init
mmp2_init_icu
(
void
);
extern
void
__init
mmp2_init_irq
(
void
);
extern
void
mmp2_clear_pmic_int
(
void
);
#include <linux/i2c.h>
#include <mach/devices.h>
#include <plat/i2c.h>
...
...
arch/arm/mach-mmp/include/mach/pxa168.h
View file @
2728701d
#ifndef __ASM_MACH_PXA168_H
#define __ASM_MACH_PXA168_H
struct
sys_timer
;
extern
struct
sys_timer
pxa168_timer
;
extern
void
__init
pxa168_init_irq
(
void
);
#include <linux/i2c.h>
#include <mach/devices.h>
#include <plat/i2c.h>
...
...
arch/arm/mach-mmp/include/mach/pxa910.h
View file @
2728701d
#ifndef __ASM_MACH_PXA910_H
#define __ASM_MACH_PXA910_H
struct
sys_timer
;
extern
struct
sys_timer
pxa910_timer
;
extern
void
__init
pxa910_init_irq
(
void
);
#include <linux/i2c.h>
#include <mach/devices.h>
#include <plat/i2c.h>
...
...
arch/arm/mach-mmp/irq-mmp2.c
View file @
2728701d
...
...
@@ -16,6 +16,7 @@
#include <linux/io.h>
#include <mach/regs-icu.h>
#include <mach/mmp2.h>
#include "common.h"
...
...
arch/arm/mach-mmp/mmp2.c
View file @
2728701d
...
...
@@ -27,6 +27,7 @@
#include <mach/mfp.h>
#include <mach/gpio.h>
#include <mach/devices.h>
#include <mach/mmp2.h>
#include "common.h"
#include "clock.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