Assorted warning fixes
This commit is contained in:
@@ -1825,7 +1825,7 @@ cpu_386_check_instruction_fault(void)
|
||||
}
|
||||
|
||||
int
|
||||
sysenter(uint32_t fetchdat)
|
||||
sysenter(UNUSED(uint32_t fetchdat))
|
||||
{
|
||||
#ifdef ENABLE_386_COMMON_LOG
|
||||
x386_common_log("SYSENTER called\n");
|
||||
@@ -1907,7 +1907,7 @@ sysenter(uint32_t fetchdat)
|
||||
}
|
||||
|
||||
int
|
||||
sysexit(uint32_t fetchdat)
|
||||
sysexit(UNUSED(uint32_t fetchdat))
|
||||
{
|
||||
#ifdef ENABLE_386_COMMON_LOG
|
||||
x386_common_log("SYSEXIT called\n");
|
||||
@@ -1994,7 +1994,7 @@ sysexit(uint32_t fetchdat)
|
||||
}
|
||||
|
||||
int
|
||||
syscall_op(uint32_t fetchdat)
|
||||
syscall_op(UNUSED(uint32_t fetchdat))
|
||||
{
|
||||
#ifdef ENABLE_386_COMMON_LOG
|
||||
x386_common_log("SYSCALL called\n");
|
||||
@@ -2046,7 +2046,7 @@ syscall_op(uint32_t fetchdat)
|
||||
}
|
||||
|
||||
int
|
||||
sysret(uint32_t fetchdat)
|
||||
sysret(UNUSED(uint32_t fetchdat))
|
||||
{
|
||||
#ifdef ENABLE_386_COMMON_LOG
|
||||
x386_common_log("SYSRET called\n");
|
||||
|
||||
Reference in New Issue
Block a user