mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
OMAP2/3: PM: make PM __init calls static
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
This commit is contained in:
parent
ed680c4ad4
commit
7cc515f74d
3 changed files with 2 additions and 5 deletions
|
@ -11,9 +11,6 @@
|
|||
#ifndef __ARCH_ARM_MACH_OMAP2_PM_H
|
||||
#define __ARCH_ARM_MACH_OMAP2_PM_H
|
||||
|
||||
extern int omap2_pm_init(void);
|
||||
extern int omap3_pm_init(void);
|
||||
|
||||
#ifdef CONFIG_PM_DEBUG
|
||||
extern void omap2_pm_dump(int mode, int resume, unsigned int us);
|
||||
extern int omap2_pm_debug;
|
||||
|
|
|
@ -470,7 +470,7 @@ static void __init prcm_setup_regs(void)
|
|||
WKUP_MOD, PM_WKEN);
|
||||
}
|
||||
|
||||
int __init omap2_pm_init(void)
|
||||
static int __init omap2_pm_init(void)
|
||||
{
|
||||
u32 l;
|
||||
|
||||
|
|
|
@ -652,7 +652,7 @@ static int __init clkdms_setup(struct clockdomain *clkdm)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int __init omap3_pm_init(void)
|
||||
static int __init omap3_pm_init(void)
|
||||
{
|
||||
struct power_state *pwrst, *tmp;
|
||||
int ret;
|
||||
|
|
Loading…
Reference in a new issue