From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: [Patch 3/4] x86/hpet: Fix ambiguity in broadcast info message. Date: Mon, 7 Oct 2013 14:26:20 +0100 Message-ID: <1381152381-19744-4-git-send-email-andrew.cooper3@citrix.com> References: <1381152381-19744-1-git-send-email-andrew.cooper3@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1381152381-19744-1-git-send-email-andrew.cooper3@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Xen-devel Cc: Andrew Cooper , Keir Fraser , Jan Beulich List-Id: xen-devel@lists.xenproject.org "$N will be used for broadcast" is ambiguous between "$N timers" or "timer $N", particuarly when N is 0. Signed-off-by: Andrew Cooper CC: Keir Fraser CC: Jan Beulich --- xen/arch/x86/hpet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/hpet.c b/xen/arch/x86/hpet.c index 99882b1..091e624 100644 --- a/xen/arch/x86/hpet.c +++ b/xen/arch/x86/hpet.c @@ -430,7 +430,7 @@ static void __init hpet_fsb_cap_lookup(void) num_hpets_used++; } - printk(XENLOG_INFO "HPET: %u timers (%u will be used for broadcast)\n", + printk(XENLOG_INFO "HPET: %u timers (%u timers used for broadcast)\n", num_chs, num_hpets_used); } -- 1.7.10.4