blob: 14ca00fb966ea4e908b85c619bc67fbec383d901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __ARCH_ASM_MACH_OMAP2_PRCM_DEBUG_H
#define __ARCH_ASM_MACH_OMAP2_PRCM_DEBUG_H
#define PRCMDEBUG_LASTSLEEP (1 << 0)
#define PRCMDEBUG_ON (1 << 1)
#ifdef CONFIG_PM_DEBUG
extern void prcmdebug_dump(int flags);
#else
static inline void prcmdebug_dump(int flags) { }
#endif
#endif /* __ARCH_ASM_MACH_OMAP2_PRCM_DEBUG_H */
|