diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2015-12-14 16:01:43 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-14 19:15:05 -0800 |
commit | af3ff643ea91ba64dd8d0b1cbed54d44512f96cd (patch) | |
tree | e48219e948d1d7d5c79b272ec09b001ac7552dbf /include/linux/mod_devicetable.h | |
parent | ed9ba608e4851144af8c7061cbb19f751c73e998 (diff) | |
download | talos-obmc-linux-af3ff643ea91ba64dd8d0b1cbed54d44512f96cd.tar.gz talos-obmc-linux-af3ff643ea91ba64dd8d0b1cbed54d44512f96cd.zip |
Drivers: hv: vmbus: Use uuid_le type consistently
Consistently use uuid_le type in the Hyper-V driver code.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.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 64f36e09a790..6e4c645e1c0d 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -404,7 +404,7 @@ struct virtio_device_id { * For Hyper-V devices we use the device guid as the id. */ struct hv_vmbus_device_id { - __u8 guid[16]; + uuid_le guid; kernel_ulong_t driver_data; /* Data private to the driver */ }; |