[S390] Fix init irq proc build break.

Embed init_irq_proc(s390) within CONFIG_PROC_FS to fix a build break.

Signed-off-by : Sachin Sant <sachinp@in.ibm.com>
This commit is contained in:
Sachin Sant 2009-02-11 10:37:29 +01:00 committed by Martin Schwidefsky
parent d5e842c4b7
commit 0addff8151
1 changed files with 2 additions and 0 deletions

View File

@ -95,6 +95,7 @@ asmlinkage void do_softirq(void)
local_irq_restore(flags); local_irq_restore(flags);
} }
#ifdef CONFIG_PROC_FS
void init_irq_proc(void) void init_irq_proc(void)
{ {
struct proc_dir_entry *root_irq_dir; struct proc_dir_entry *root_irq_dir;
@ -102,3 +103,4 @@ void init_irq_proc(void)
root_irq_dir = proc_mkdir("irq", NULL); root_irq_dir = proc_mkdir("irq", NULL);
create_prof_cpu_mask(root_irq_dir); create_prof_cpu_mask(root_irq_dir);
} }
#endif