[PATCH v1 4/8] vfio-mdev: Use recently introduced uuid_le_cmp_p{p}()

Andy Shevchenko andriy.shevchenko at linux.intel.com
Fri Apr 21 14:46:41 UTC 2017


Recently introduced helpers take pointers to uuid_{be|le} instead of
reference.

Using them makes code less ugly.

Cc: Kirti Wankhede <kwankhede at nvidia.com>
Cc: Alex Williamson <alex.williamson at redhat.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
---
 drivers/vfio/mdev/mdev_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c
index 126991046eb7..82de886855d8 100644
--- a/drivers/vfio/mdev/mdev_core.c
+++ b/drivers/vfio/mdev/mdev_core.c
@@ -75,7 +75,7 @@ static int _find_mdev_device(struct device *dev, void *data)
 
 	mdev = to_mdev_device(dev);
 
-	if (uuid_le_cmp(mdev->uuid, *(uuid_le *)data) == 0)
+	if (uuid_le_cmp_p(data, mdev->uuid) == 0)
 		return 1;
 
 	return 0;
-- 
2.11.0



More information about the devel mailing list