diff options
author | Andrew Morton <akpm@osdl.org> | 2005-09-30 11:58:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-30 12:41:17 -0700 |
commit | d96c4e7bb039ae16c9b7e6809feb4fcfc45fcc87 (patch) | |
tree | d3a822b5758f97f6a629b84dc0e5c362f042d8fc /include/asm-i386 | |
parent | 353fb07e2043d2df12dddf4e2c39552d0ab9b026 (diff) | |
download | op-kernel-dev-d96c4e7bb039ae16c9b7e6809feb4fcfc45fcc87.zip op-kernel-dev-d96c4e7bb039ae16c9b7e6809feb4fcfc45fcc87.tar.gz |
[PATCH] x86: hw_irq.h warning fix
include/asm/hw_irq.h:70: warning: `struct hw_interrupt_type' declared inside parameter list
include/asm/hw_irq.h:70: warning: its scope is only this definition or declaration, which is probably not what you want
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/hw_irq.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-i386/hw_irq.h b/include/asm-i386/hw_irq.h index 4ac84cc..622815b 100644 --- a/include/asm-i386/hw_irq.h +++ b/include/asm-i386/hw_irq.h @@ -18,6 +18,8 @@ #include <asm/irq.h> #include <asm/sections.h> +struct hw_interrupt_type; + /* * Various low-level irq details needed by irq.c, process.c, * time.c, io_apic.c and smp.c |