12 lines
192 B
C
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
|