aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/iova.h
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2019-07-23 09:51:00 +0200
committerJoerg Roedel <jroedel@suse.de>2019-07-23 09:51:00 +0200
commit201c1db90cd643282185a00770f12f95da330eca (patch)
treedaf2db89c3fdd8c5239b9f29003713df9255903e /include/linux/iova.h
parentiommu/vt-d: Print pasid table entries MSB to LSB in debugfs (diff)
downloadlinux-dev-201c1db90cd643282185a00770f12f95da330eca.tar.xz
linux-dev-201c1db90cd643282185a00770f12f95da330eca.zip
iommu/iova: Fix compilation error with !CONFIG_IOMMU_IOVA
The stub function for !CONFIG_IOMMU_IOVA needs to be 'static inline'. Fixes: effa467870c76 ('iommu/vt-d: Don't queue_iova() if there is no flush queue') Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'include/linux/iova.h')
-rw-r--r--include/linux/iova.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/iova.h b/include/linux/iova.h
index cd0f1de901a8..a0637abffee8 100644
--- a/include/linux/iova.h
+++ b/include/linux/iova.h
@@ -236,7 +236,7 @@ static inline void init_iova_domain(struct iova_domain *iovad,
{
}
-bool has_iova_flush_queue(struct iova_domain *iovad)
+static inline bool has_iova_flush_queue(struct iova_domain *iovad)
{
return false;
}