|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 06/11] xen: fix function declaration
use foo(void) instead of foo() when the function takes no parameters.
Signed-off-by: Bill Pemberton <wfp5p@xxxxxxxxxxxx>
CC: xen-devel@xxxxxxxxxxxxxxxxxxx
---
arch/x86/xen/irq.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/xen/irq.c b/arch/x86/xen/irq.c
index 9d30105..6a6fe89 100644
--- a/arch/x86/xen/irq.c
+++ b/arch/x86/xen/irq.c
@@ -126,7 +126,7 @@ static const struct pv_irq_ops xen_irq_ops __initdata = {
#endif
};
-void __init xen_init_irq_ops()
+void __init xen_init_irq_ops(void)
{
pv_irq_ops = xen_irq_ops;
x86_init.irqs.intr_init = xen_init_IRQ;
--
1.7.0.6
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] [PATCH 06/11] xen: fix function declaration,
Bill Pemberton <=
|
|
|
|
|