diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-09 15:22:09 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-09 21:19:07 (GMT) |
commit | f3d2ab41b5e2dfb2fc8679b786476327cea2f249 (patch) | |
tree | 6fc55b0473af9ee0dcce2abc5ed039c0730293cd /arch/powerpc | |
parent | a23b7cb998f18101f9b0f505d81e6c68a7830a05 (diff) | |
download | linux-f3d2ab41b5e2dfb2fc8679b786476327cea2f249.tar.xz |
[PATCH] extern doesn't make sense on a definition of function...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 829ac18..5e37bf1 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c @@ -572,8 +572,8 @@ unsigned int irq_create_mapping(struct irq_host *host, } EXPORT_SYMBOL_GPL(irq_create_mapping); -extern unsigned int irq_create_of_mapping(struct device_node *controller, - u32 *intspec, unsigned int intsize) +unsigned int irq_create_of_mapping(struct device_node *controller, + u32 *intspec, unsigned int intsize) { struct irq_host *host; irq_hw_number_t hwirq; |