fix:

 kernel/built-in.o: In function `profiling_store':
 ksysfs.c:(.text+0x1f90c): undefined reference to `create_proc_profile'

Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Ingo Molnar 2008-10-17 11:25:23 +02:00
Родитель 52f4f324c7
Коммит 8cf7d362c0
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -37,7 +37,14 @@ extern int prof_on __read_mostly;
/* init basic kernel profiler */
int profile_init(void);
int profile_setup(char *str);
#ifdef CONFIG_PROC_FS
int create_proc_profile(void);
#else
static inline int create_proc_profile(void)
{
return 0;
}
#endif
void profile_tick(int type);
/*