diff options
author | Sergio Aguirre <saaguirre@ti.com> | 2010-01-14 11:01:15 -0600 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-01-20 18:16:10 -0800 |
commit | 6b34f9d4e60a4fb9f847533a207e31316603e840 (patch) | |
tree | 4e00b23c2bda5fe37b494abc549f204d60795935 /arch | |
parent | b92c5721d28507738d294e9a582eb6232ec6abad (diff) | |
download | linux-3.10-6b34f9d4e60a4fb9f847533a207e31316603e840.tar.gz linux-3.10-6b34f9d4e60a4fb9f847533a207e31316603e840.tar.bz2 linux-3.10-6b34f9d4e60a4fb9f847533a207e31316603e840.zip |
PM debug: Fix warning when no CONFIG_DEBUG_FS
Fix following warning when CONFIG_DEBUG_FS wasn't selected:
arch/arm/mach-omap2/pm-debug.c:57: warning: 'pm_dbg_init' declared 'static' but never defined
Signed-off-by: Sergio Aguirre <saaguirre@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/pm-debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 562d190cd66..a0866268aa4 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -54,8 +54,6 @@ int omap2_pm_debug; regs[reg_count++].val = \ __raw_readl(OMAP2_L4_IO_ADDRESS(0x480fe000 + (off))) -static int __init pm_dbg_init(void); - void omap2_pm_dump(int mode, int resume, unsigned int us) { struct reg { @@ -167,6 +165,8 @@ struct dentry *pm_dbg_dir; static int pm_dbg_init_done; +static int __init pm_dbg_init(void); + enum { DEBUG_FILE_COUNTERS = 0, DEBUG_FILE_TIMERS, |