]> git.baikalelectronics.ru Git - kernel.git/commit
sparc: Fix minor SPARC32 compile error
authorJulian Calaby <julian.calaby@gmail.com>
Tue, 6 Jan 2009 02:13:49 +0000 (18:13 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 6 Jan 2009 02:13:49 +0000 (18:13 -0800)
commit57bf817d653712f813f8bd96255ca304254997f4
treec1a1a647395e1b24395dee7b34501d12bdce3e40
parentae752f11a5f6428dc40e7edbbc11f294febd4ddf
sparc: Fix minor SPARC32 compile error

When CONFIG_PROC_FS is unset, include/linux/interrupt.h defines
init_irq_proc() as an empty function.

arch/sparc/kernel/irq_32.c defines this function unconditionally.

Fix the latter so that it only defines this function when CONFIG_PROC_FS
is set.

This fixes the following error:
arch/sparc/kernel/irq_32.c:672: error: redefinition of 'init_irq_proc'
include/linux/interrupt.h:461: error: previous definition of
'init_irq_proc' was here

This was found using randconfig builds.

Signed-off-by: Julian Calaby <julian.calaby@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/irq_32.c