x86/hpet: Fix ambiguity in broadcast info message
authorAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 7 Nov 2013 14:15:45 +0000 (15:15 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 7 Nov 2013 14:15:45 +0000 (15:15 +0100)
"$N will be used for broadcast" is ambiguous between "$N timers" or "timer
$N", particuarly when N is 0.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Tim Deegan <tim@xen.org>
xen/arch/x86/hpet.c

index 99882b1e5a5065e280a8385857bd462d054644cb..437379172904e76a1cf529caf71e5c7db87f60c7 100644 (file)
@@ -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)