|
@@ -165,6 +165,7 @@ void __init setup_arch(char **cmdline_p)
|
|
|
strcpy(init_utsname()->machine, cris_machine_name);
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_PROC_FS
|
|
|
static void *c_start(struct seq_file *m, loff_t *pos)
|
|
|
{
|
|
|
return *pos < nr_cpu_ids ? (void *)(int)(*pos + 1) : NULL;
|
|
@@ -188,6 +189,7 @@ const struct seq_operations cpuinfo_op = {
|
|
|
.stop = c_stop,
|
|
|
.show = show_cpuinfo,
|
|
|
};
|
|
|
+#endif /* CONFIG_PROC_FS */
|
|
|
|
|
|
static int __init topology_init(void)
|
|
|
{
|