Commit adddcecf authored by Takuya Yoshikawa's avatar Takuya Yoshikawa Committed by Avi Kivity

KVM: x86 emulator: Remove unused arg from writeback()

Remove inline at this chance.
Signed-off-by: default avatarTakuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp>
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 509cf9fe
...@@ -1351,8 +1351,7 @@ static void write_register_operand(struct operand *op) ...@@ -1351,8 +1351,7 @@ static void write_register_operand(struct operand *op)
} }
} }
static inline int writeback(struct x86_emulate_ctxt *ctxt, static int writeback(struct x86_emulate_ctxt *ctxt)
struct x86_emulate_ops *ops)
{ {
int rc; int rc;
struct decode_cache *c = &ctxt->decode; struct decode_cache *c = &ctxt->decode;
...@@ -4089,7 +4088,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt) ...@@ -4089,7 +4088,7 @@ x86_emulate_insn(struct x86_emulate_ctxt *ctxt)
goto done; goto done;
writeback: writeback:
rc = writeback(ctxt, ops); rc = writeback(ctxt);
if (rc != X86EMUL_CONTINUE) if (rc != X86EMUL_CONTINUE)
goto done; goto done;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment