summaryrefslogtreecommitdiffstats
path: root/vidix/sysdep/AsmMacros_x86.h
diff options
context:
space:
mode:
Diffstat (limited to 'vidix/sysdep/AsmMacros_x86.h')
-rw-r--r--vidix/sysdep/AsmMacros_x86.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vidix/sysdep/AsmMacros_x86.h b/vidix/sysdep/AsmMacros_x86.h
index 6bebeaa505..88e71e275d 100644
--- a/vidix/sysdep/AsmMacros_x86.h
+++ b/vidix/sysdep/AsmMacros_x86.h
@@ -321,7 +321,7 @@ static __inline__ unsigned int inl(short port)
return ret;
}
-static __inline__ void intr_disable()
+static __inline__ void intr_disable(void)
{
#ifdef CONFIG_SVGAHELPER
if (svgahelper_initialized == 1)
@@ -330,7 +330,7 @@ static __inline__ void intr_disable()
__asm__ volatile("cli");
}
-static __inline__ void intr_enable()
+static __inline__ void intr_enable(void)
{
#ifdef CONFIG_SVGAHELPER
if (svgahelper_initialized == 1)