Skip to content

Commit

Permalink
include/asm-x86/kvm_x86_emulate.h: checkpatch cleanups - formatting only
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Joe Perches authored and Ingo Molnar committed Apr 17, 2008
1 parent 7d76b4d commit 0c7825e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions include/asm-x86/kvm_x86_emulate.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ 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,
void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);
int (*read_emulated)(unsigned long addr,
void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);

/*
* write_emulated: Read bytes from emulated/special memory area.
Expand All @@ -80,10 +80,10 @@ struct x86_emulate_ops {
* required).
* @bytes: [IN ] Number of bytes to write to memory.
*/
int (*write_emulated) (unsigned long addr,
const void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);
int (*write_emulated)(unsigned long addr,
const void *val,
unsigned int bytes,
struct kvm_vcpu *vcpu);

/*
* cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
Expand All @@ -93,11 +93,11 @@ 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,
const void *old,
const void *new,
unsigned int bytes,
struct kvm_vcpu *vcpu);
int (*cmpxchg_emulated)(unsigned long addr,
const void *old,
const void *new,
unsigned int bytes,
struct kvm_vcpu *vcpu);

};

Expand Down Expand Up @@ -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. */
Expand Down

0 comments on commit 0c7825e

Please sign in to comment.