From: Andy Shevchenko Date: Thu, 23 Apr 2020 13:45:05 +0000 (+0300) Subject: hyper-v: Switch to use UUID types directly X-Git-Tag: v5.8-rc1~169^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7d18c57c94a38a81c1dbcfee0d63153ffaf1856;p=thirdparty%2Fkernel%2Flinux.git 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: Andy Shevchenko Link: https://lore.kernel.org/r/20200423134505.78221-4-andriy.shevchenko@linux.intel.com Signed-off-by: Wei Liu --- diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 4c2ddd0941a75..f36b1cf5ffe38 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -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 */ };