diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-12-01 06:46:59 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 11:41:50 -0800 |
commit | 3bacaf0ce106d9caca75f64a58f3b938b070df29 (patch) | |
tree | 89924763bd639442263b37a1f623c991a9dd1163 /drivers/hv/hv.c | |
parent | 5fbebb2d2095e5c7d289d5f4ffecc2f2661c584a (diff) | |
download | op-kernel-dev-3bacaf0ce106d9caca75f64a58f3b938b070df29.zip op-kernel-dev-3bacaf0ce106d9caca75f64a58f3b938b070df29.tar.gz |
Drivers: hv: Cleanup and consolidate reporting of build/version info
Now, cleanup and consolidate reporting of host and vmbus version numbers.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv/hv.c')
-rw-r--r-- | drivers/hv/hv.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c index 0cd2da3..1c5481d 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c @@ -74,13 +74,6 @@ static int query_hypervisor_info(void) edx = 0; op = HVCPUID_VERSION; cpuid(op, &eax, &ebx, &ecx, &edx); - pr_info("Hyper-V Host OS Build:%d-%d.%d-%d-%d.%d\n", - eax, - ebx >> 16, - ebx & 0xFFFF, - ecx, - edx >> 24, - edx & 0xFFFFFF); host_info_eax = eax; host_info_ebx = ebx; host_info_ecx = ecx; |