Commit 0c7825e6 authored by Joe Perches's avatar Joe Perches Committed by Ingo Molnar

include/asm-x86/kvm_x86_emulate.h: checkpatch cleanups - formatting only

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 7d76b4d3
......@@ -68,7 +68,7 @@ struct x86_emulate_ops {
* @val: [OUT] Value read from memory, zero-extended to 'u_long'.
* @bytes: [IN ] Number of bytes to read from memory.
*/
int (*read_emulated) (unsigned long addr,
int (*read_emulated)(unsigned long addr,
void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);
......@@ -80,7 +80,7 @@ struct x86_emulate_ops {
* required).
* @bytes: [IN ] Number of bytes to write to memory.
*/
int (*write_emulated) (unsigned long addr,
int (*write_emulated)(unsigned long addr,
const void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);
......@@ -93,7 +93,7 @@ struct x86_emulate_ops {
* @new: [IN ] Value to write to @addr.
* @bytes: [IN ] Number of bytes to access using CMPXCHG.
*/
int (*cmpxchg_emulated) (unsigned long addr,
int (*cmpxchg_emulated)(unsigned long addr,
const void *old,
const void *new,
unsigned int bytes,
......@@ -143,7 +143,7 @@ struct x86_emulate_ctxt {
/* Register state before/after emulation. */
struct kvm_vcpu *vcpu;
/* Linear faulting address (if emulating a page-faulting instruction). */
/* Linear faulting address (if emulating a page-faulting instruction) */
unsigned long eflags;
/* Emulated execution mode, represented by an X86EMUL_MODE value. */
......
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