Commit b7d18c57 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Wei Liu
Browse files

hyper-v: Switch to use UUID types directly



uuid_le is an alias for guid_t and is going to be removed in the future.
Replace it with original type.

Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200423134505.78221-4-andriy.shevchenko@linux.intel.com


Signed-off-by: default avatarWei Liu <wei.liu@kernel.org>
parent 0027e3fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -434,7 +434,7 @@ struct virtio_device_id {
 * For Hyper-V devices we use the device guid as the id.
 */
struct hv_vmbus_device_id {
	uuid_le guid;
	guid_t guid;
	kernel_ulong_t driver_data;	/* Data private to the driver */
};