diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-04-23 16:45:05 +0300 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2020-05-20 12:13:59 +0300 |
commit | b7d18c57c94a38a81c1dbcfee0d63153ffaf1856 (patch) | |
tree | 874ee4b7e47e9eadeebbef0be7f34a4d158c94f0 /include/linux/mod_devicetable.h | |
parent | 0027e3fd6d907c81097ab656de2521854f37b9a6 (diff) | |
download | linux-b7d18c57c94a38a81c1dbcfee0d63153ffaf1856.tar.xz |
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 <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>
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r-- | include/linux/mod_devicetable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 4c2ddd0941a7..f36b1cf5ffe3 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 */ }; |