From 778bed334508b6da340e2a9301c643318fca3b65 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Fri, 23 Sep 2022 10:37:39 +0200 Subject: gpu: host1x: Update host1x_memory_context_alloc() !IOMMU_API stub A new parameter was added to the host1x_memory_context_alloc() function in commit 1508aa73ea38 ("gpu: host1x: Select context device based on attached IOMMU"), but the !IOMMU_API stub signature wasn't updated to reflect that. Update the stub's signature to fix random configuration builds. Fixes: 1508aa73ea38 ("gpu: host1x: Select context device based on attached IOMMU") Signed-off-by: Thierry Reding --- include/linux/host1x.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/host1x.h b/include/linux/host1x.h index ef05de1f4f1e..dc55d9d3b94f 100644 --- a/include/linux/host1x.h +++ b/include/linux/host1x.h @@ -475,6 +475,7 @@ void host1x_memory_context_get(struct host1x_memory_context *cd); void host1x_memory_context_put(struct host1x_memory_context *cd); #else static inline struct host1x_memory_context *host1x_memory_context_alloc(struct host1x *host1x, + struct device *dev, struct pid *pid) { return NULL; -- cgit v1.2.3