diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-01-10 22:00:27 +0300 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2019-02-05 21:51:56 +0300 |
commit | 278bca7f318e6a29f482eabbca52db538dc5d4e6 (patch) | |
tree | 13c51a6893f19147a62115a9329dec3516b0290f /include/linux/mdev.h | |
parent | 8834f5600cf3c8db365e18a3d5cac2c2780c81e5 (diff) | |
download | linux-278bca7f318e6a29f482eabbca52db538dc5d4e6.tar.xz |
vfio-mdev: Switch to use new generic UUID API
There are new types and helpers that are supposed to be used in new code.
As a preparation to get rid of legacy types and API functions do
the conversion here.
Cc: Kirti Wankhede <kwankhede@nvidia.com>
Cc: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/linux/mdev.h')
-rw-r--r-- | include/linux/mdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mdev.h b/include/linux/mdev.h index b6e048e1045f..d7aee90e5da5 100644 --- a/include/linux/mdev.h +++ b/include/linux/mdev.h @@ -120,7 +120,7 @@ struct mdev_driver { extern void *mdev_get_drvdata(struct mdev_device *mdev); extern void mdev_set_drvdata(struct mdev_device *mdev, void *data); -extern uuid_le mdev_uuid(struct mdev_device *mdev); +extern const guid_t *mdev_uuid(struct mdev_device *mdev); extern struct bus_type mdev_bus_type; |