]> Git Repo - J-linux.git/commitdiff
drm/xe: Disable 32bits build
authorLucas De Marchi <[email protected]>
Thu, 21 Dec 2023 22:28:04 +0000 (14:28 -0800)
committerDave Airlie <[email protected]>
Fri, 22 Dec 2023 01:17:15 +0000 (11:17 +1000)
Add a dependency on CONFIG_64BIT since currently the xe driver doesn't
build on 32bits. It may be enabled again after all the issues are fixed.

Signed-off-by: Lucas De Marchi <[email protected]>
Reviewed-by: Rodrigo Vivi <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/xe/Kconfig

index 90c676d14c509a6c30607f89d9b236ad1a5a2227..1cced50d8d8c9dadcb40f7ebe75cf7474170772b 100644 (file)
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config DRM_XE
        tristate "Intel Xe Graphics"
-       depends on DRM && PCI && MMU && (m || (y && KUNIT=y))
+       depends on DRM && PCI && MMU && (m || (y && KUNIT=y)) && 64BIT
        select INTERVAL_TREE
        # we need shmfs for the swappable backing store, and in particular
        # the shmem_readpage() which depends upon tmpfs
This page took 0.048042 seconds and 4 git commands to generate.