summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2019-07-23 09:51:00 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-08-04 09:30:54 +0200
commit3a0c22cbc5d0b570a2cc9a7cffa1ac715fe564b7 (patch)
tree3bf4d9b6231e97288a301ae601e66358f48e73a1 /include
parent4fd0eb60bad18067b6ebc2764913697b9a373bf3 (diff)
downloadlinux-stable-3a0c22cbc5d0b570a2cc9a7cffa1ac715fe564b7.tar.gz
linux-stable-3a0c22cbc5d0b570a2cc9a7cffa1ac715fe564b7.tar.bz2
linux-stable-3a0c22cbc5d0b570a2cc9a7cffa1ac715fe564b7.zip
iommu/iova: Fix compilation error with !CONFIG_IOMMU_IOVA
commit 201c1db90cd643282185a00770f12f95da330eca upstream. 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> Signed-off-by: Dmitry Safonov <dima@arista.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-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 073dc27d2e5f..84fbe73d2ec0 100644
--- a/include/linux/iova.h
+++ b/include/linux/iova.h
@@ -237,7 +237,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;
}