Lines Matching defs:mdev
12 #include <linux/mdev.h>
16 static int mdev_attach_iommu(struct mdev_device *mdev)
25 ret = iommu_group_add_device(group, &mdev->dev);
27 dev_info(&mdev->dev, "MDEV: group_id = %d\n",
34 static void mdev_detach_iommu(struct mdev_device *mdev)
36 iommu_group_remove_device(&mdev->dev);
37 dev_info(&mdev->dev, "MDEV: detaching iommu\n");
43 struct mdev_device *mdev = to_mdev_device(dev);
46 ret = mdev_attach_iommu(mdev);
53 mdev_detach_iommu(mdev);
62 struct mdev_device *mdev = to_mdev_device(dev);
67 mdev_detach_iommu(mdev);
73 .name = "mdev",