mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 01:21:28 +00:00
5e12f7ea4a
Commit 57692c94dc
("drm/v3d: Introduce a new DRM driver for Broadcom V3D
V3.x+") adds the config DRM_V3D, which depends on "ARCH_BCMSTB".
Although, a bit confusing: all Broadcom architectures in
./arch/arm/mach-bcm/Kconfig have the prefix "ARCH_BCM", except for
ARCH_BRCMSTB, i.e., the config for Broadcom BCM7XXX based boards.
So, correct the reference ARCH_BCMSTB to the intended ARCH_BRCMSTB.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210819112253.16484-4-lukas.bulwahn@gmail.com
13 lines
360 B
Plaintext
13 lines
360 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_V3D
|
|
tristate "Broadcom V3D 3.x and newer"
|
|
depends on ARCH_BCM || ARCH_BRCMSTB || COMPILE_TEST
|
|
depends on DRM
|
|
depends on COMMON_CLK
|
|
depends on MMU
|
|
select DRM_SCHED
|
|
select DRM_GEM_SHMEM_HELPER
|
|
help
|
|
Choose this option if you have a system that has a Broadcom
|
|
V3D 3.x or newer GPU, such as BCM7268.
|