hyper-v: Switch to use UUID types directly
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 23 Apr 2020 13:45:05 +0000 (16:45 +0300)
committerWei Liu <wei.liu@kernel.org>
Wed, 20 May 2020 09:13:59 +0000 (09:13 +0000)
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 <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200423134505.78221-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
include/linux/mod_devicetable.h

index 4c2ddd0..f36b1cf 100644 (file)
@@ -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 */
 };