Message ID | 20200228150820.15340-8-joro@8bytes.org |
---|---|
State | New |
Headers | show |
Series | iommu: Move iommu_fwspec out of 'struct device' | expand |
diff --git a/include/linux/iommu.h b/include/linux/iommu.h index a049bcb660e1..904fb24418e5 100644 --- a/include/linux/iommu.h +++ b/include/linux/iommu.h @@ -627,6 +627,16 @@ static inline void dev_iommu_fwspec_set(struct device *dev, dev->iommu->fwspec = fwspec; } +static inline void *dev_iommu_priv_get(struct device *dev) +{ + return dev->iommu->fwspec->iommu_priv; +} + +static inline void dev_iommu_priv_set(struct device *dev, void *priv) +{ + dev->iommu->fwspec->iommu_priv = priv; +} + int iommu_probe_device(struct device *dev); void iommu_release_device(struct device *dev);