diff options
author | Casey Bowman <casey.g.bowman@intel.com> | 2022-03-31 02:48:09 +0300 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2022-04-06 21:02:00 +0300 |
commit | ce3d4d7f33148ed70ddf5f243f1d76e12a8ee7cc (patch) | |
tree | e4cb2d93e2255d4ce33aa3c7d9ece3a5c50177ee /drivers/gpu/drm/i915/Kconfig | |
parent | 7a5c922377b41c008b6f20ecea788bf1d80e9ddb (diff) | |
download | linux-ce3d4d7f33148ed70ddf5f243f1d76e12a8ee7cc.tar.xz |
drm/i915: Require INTEL_GTT to depend on X86
The intel-gtt module is not used on other, non-x86 platforms, so we
will restrict it to x86 platforms only.
Signed-off-by: Casey Bowman <casey.g.bowman@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220330234809.1218210-3-casey.g.bowman@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/Kconfig')
-rw-r--r-- | drivers/gpu/drm/i915/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/Kconfig b/drivers/gpu/drm/i915/Kconfig index 63db8bcf03bf..b381e14863a6 100644 --- a/drivers/gpu/drm/i915/Kconfig +++ b/drivers/gpu/drm/i915/Kconfig @@ -4,7 +4,7 @@ config DRM_I915 depends on DRM depends on X86 && PCI depends on !PREEMPT_RT - select INTEL_GTT + select INTEL_GTT if X86 select INTERVAL_TREE # we need shmfs for the swappable backing store, and in particular # the shmem_readpage() which depends upon tmpfs |