aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hvm/i8254.c
diff options
context:
space:
mode:
authorshand@kneesaa.uk.xensource.com <shand@kneesaa.uk.xensource.com>2006-08-15 18:20:03 +0100
committershand@kneesaa.uk.xensource.com <shand@kneesaa.uk.xensource.com>2006-08-15 18:20:03 +0100
commit835d343163ca88a2d58d96680a43b865f143b33c (patch)
treeaff76ef6e017f50a2ef494a4708e3b48076e3962 /xen/arch/x86/hvm/i8254.c
parent8229d4cc06c441edd76f7588883a33f65cc3a950 (diff)
downloadxen-835d343163ca88a2d58d96680a43b865f143b33c.tar.gz
xen-835d343163ca88a2d58d96680a43b865f143b33c.tar.bz2
xen-835d343163ca88a2d58d96680a43b865f143b33c.zip
Various HVM clean-ups.
Signed-off-by: Steven Hand <steven@xensource.com>
Diffstat (limited to 'xen/arch/x86/hvm/i8254.c')
-rw-r--r--xen/arch/x86/hvm/i8254.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/hvm/i8254.c b/xen/arch/x86/hvm/i8254.c
index de2d5d3b94..6b817293b9 100644
--- a/xen/arch/x86/hvm/i8254.c
+++ b/xen/arch/x86/hvm/i8254.c
@@ -389,7 +389,7 @@ void pit_init(struct vcpu *v, unsigned long cpu_khz)
register_portio_handler(PIT_BASE, 4, handle_pit_io);
/* register the speaker port */
register_portio_handler(0x61, 1, handle_speaker_io);
- ticks_per_sec(v) = cpu_khz * (int64_t)1000;
+ ticks_per_sec(v) = cpu_khz * (int64_t)1000;
#ifdef DEBUG_PIT
printk("HVM_PIT: guest frequency =%lld\n", (long long)ticks_per_sec(v));
#endif