diff options
author | Mikko Perttunen <mperttunen@nvidia.com> | 2022-05-16 10:52:51 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2022-06-01 11:50:42 +0200 |
commit | 597b89d30b42dcc8e6b262e6876b42dde66f97f0 (patch) | |
tree | 869a22d9070a1e34988262d9aabc7c0446555128 /drivers/gpu/Makefile | |
parent | drm/tegra: gem: Do not try to dereference ERR_PTR() (diff) | |
download | linux-597b89d30b42dcc8e6b262e6876b42dde66f97f0.tar.xz linux-597b89d30b42dcc8e6b262e6876b42dde66f97f0.zip |
gpu: host1x: Add context bus
The context bus is a "dummy" bus that contains struct devices that
correspond to IOMMU contexts assigned through Host1x to processes.
Even when host1x itself is built as a module, the bus is registered
in built-in code so that the built-in ARM SMMU driver is able to
reference it.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/Makefile')
-rw-r--r-- | drivers/gpu/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/Makefile b/drivers/gpu/Makefile index 835c88318cec..8997f0096545 100644 --- a/drivers/gpu/Makefile +++ b/drivers/gpu/Makefile @@ -2,7 +2,6 @@ # drm/tegra depends on host1x, so if both drivers are built-in care must be # taken to initialize them in the correct order. Link order is the only way # to ensure this currently. -obj-$(CONFIG_TEGRA_HOST1X) += host1x/ -obj-y += drm/ vga/ +obj-y += host1x/ drm/ vga/ obj-$(CONFIG_IMX_IPUV3_CORE) += ipu-v3/ obj-$(CONFIG_TRACE_GPU_MEM) += trace/ |