From: Andrew Cooper Date: Thu, 7 Nov 2013 14:15:45 +0000 (+0100) Subject: x86/hpet: Fix ambiguity in broadcast info message X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6051 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5bf1f7ba5cd447e7a0aa05c31038be5bf6197ca3;p=xen.git x86/hpet: Fix ambiguity in broadcast info message "$N will be used for broadcast" is ambiguous between "$N timers" or "timer $N", particuarly when N is 0. Signed-off-by: Andrew Cooper Reviewed-by: Tim Deegan --- diff --git a/xen/arch/x86/hpet.c b/xen/arch/x86/hpet.c index 99882b1e5a..4373791729 100644 --- a/xen/arch/x86/hpet.c +++ b/xen/arch/x86/hpet.c @@ -430,8 +430,8 @@ static void __init hpet_fsb_cap_lookup(void) num_hpets_used++; } - printk(XENLOG_INFO "HPET: %u timers (%u will be used for broadcast)\n", - num_chs, num_hpets_used); + printk(XENLOG_INFO "HPET: %u timers usable for broadcast (%u total)\n", + num_hpets_used, num_chs); } static struct hpet_event_channel *hpet_get_channel(unsigned int cpu)