diff options
| author | Nobuhiro Iwamatsu <[email protected]> | 2014-03-31 14:15:29 +0900 |
|---|---|---|
| committer | Nobuhiro Iwamatsu <[email protected]> | 2014-04-28 04:35:12 +0900 |
| commit | 5dd8dbd7db599969fe9d0a9e3726ea55a53223a2 (patch) | |
| tree | d4cf1f894e03bc5693805dabd0f1278292abdaef | |
| parent | a028abea6c804a3f6de76ad9eda23fbf9ecb8422 (diff) | |
arm: rmobile: Add prototype for function to get the CPU information to rmobile.h
These functions are defined but has no prototype declaration. Add them.
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
Signed-off-by: Nobuhiro Iwamatsu <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-rmobile/rmobile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/rmobile.h b/arch/arm/include/asm/arch-rmobile/rmobile.h index 2382565023e..ebddd7a8fe2 100644 --- a/arch/arm/include/asm/arch-rmobile/rmobile.h +++ b/arch/arm/include/asm/arch-rmobile/rmobile.h @@ -15,4 +15,10 @@ #endif #endif /* CONFIG_RMOBILE */ +#ifndef __ASSEMBLY__ +u32 rmobile_get_cpu_type(void); +u32 rmobile_get_cpu_rev_integer(void); +u32 rmobile_get_cpu_rev_fraction(void); +#endif /* __ASSEMBLY__ */ + #endif /* __ASM_ARCH_RMOBILE_H */ |
