diff options
author | Joe Perches <joe@perches.com> | 2010-07-12 06:49:55 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-07-31 00:56:31 -0400 |
commit | ea01c6b487d53571e2e5f15a0fd41700c1e0486d (patch) | |
tree | 8d68b73d1bad81d484b6d45484c87584b4d4f925 /arch/powerpc/kvm | |
parent | bbc8e30f17077f83fdeeeca0cf70e0f179279282 (diff) |
powerpc: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r-- | arch/powerpc/kvm/timing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/timing.c b/arch/powerpc/kvm/timing.c index 70378551c0cc..46fa04f12a9b 100644 --- a/arch/powerpc/kvm/timing.c +++ b/arch/powerpc/kvm/timing.c | |||
@@ -182,7 +182,7 @@ static ssize_t kvmppc_exit_timing_write(struct file *file, | |||
182 | } | 182 | } |
183 | 183 | ||
184 | if (c == 'c') { | 184 | if (c == 'c') { |
185 | struct seq_file *seqf = (struct seq_file *)file->private_data; | 185 | struct seq_file *seqf = file->private_data; |
186 | struct kvm_vcpu *vcpu = seqf->private; | 186 | struct kvm_vcpu *vcpu = seqf->private; |
187 | /* Write does not affect our buffers previously generated with | 187 | /* Write does not affect our buffers previously generated with |
188 | * show. seq_file is locked here to prevent races of init with | 188 | * show. seq_file is locked here to prevent races of init with |