Files
2019-04-15 22:58:31 +01:00

12 lines
192 B
C

/*
boot logger: drivers/misc/mtprof/bootprof
interface: /proc/bootprof
*/
#ifdef CONFIG_SCHEDSTATS
extern void log_boot(char *str);
#else
static inline void log_boot(char *str)
{
}
#endif