|
@@ -195,16 +195,10 @@ static int vmbus_initiate_contact ( struct hv_hypervisor *hv,
|
195
|
195
|
vmbus );
|
196
|
196
|
return -ENOTSUP;
|
197
|
197
|
}
|
198
|
|
- if ( version->version.raw != cpu_to_le32 ( raw ) ) {
|
199
|
|
- DBGC ( vmbus, "VMBUS %p unexpected version %d.%d\n",
|
200
|
|
- vmbus, le16_to_cpu ( version->version.major ),
|
201
|
|
- le16_to_cpu ( version->version.minor ) );
|
202
|
|
- return -EPROTO;
|
203
|
|
- }
|
204
|
198
|
|
205
|
199
|
DBGC ( vmbus, "VMBUS %p initiated contact using version %d.%d\n",
|
206
|
|
- vmbus, le16_to_cpu ( version->version.major ),
|
207
|
|
- le16_to_cpu ( version->version.minor ) );
|
|
200
|
+ vmbus, le16_to_cpu ( initiate.version.major ),
|
|
201
|
+ le16_to_cpu ( initiate.version.minor ) );
|
208
|
202
|
return 0;
|
209
|
203
|
}
|
210
|
204
|
|