diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-12-01 09:46:59 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 14:41:50 -0500 |
commit | 3bacaf0ce106d9caca75f64a58f3b938b070df29 (patch) | |
tree | 89924763bd639442263b37a1f623c991a9dd1163 /drivers/hv/hv.c | |
parent | 5fbebb2d2095e5c7d289d5f4ffecc2f2661c584a (diff) |
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 0cd2da3b22f5..1c5481da6e4a 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c | |||
@@ -74,13 +74,6 @@ static int query_hypervisor_info(void) | |||
74 | edx = 0; | 74 | edx = 0; |
75 | op = HVCPUID_VERSION; | 75 | op = HVCPUID_VERSION; |
76 | cpuid(op, &eax, &ebx, &ecx, &edx); | 76 | cpuid(op, &eax, &ebx, &ecx, &edx); |
77 | pr_info("Hyper-V Host OS Build:%d-%d.%d-%d-%d.%d\n", | ||
78 | eax, | ||
79 | ebx >> 16, | ||
80 | ebx & 0xFFFF, | ||
81 | ecx, | ||
82 | edx >> 24, | ||
83 | edx & 0xFFFFFF); | ||
84 | host_info_eax = eax; | 77 | host_info_eax = eax; |
85 | host_info_ebx = ebx; | 78 | host_info_ebx = ebx; |
86 | host_info_ecx = ecx; | 79 | host_info_ecx = ecx; |