Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1638333
| From | Eric Anholt <eric@anholt.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. |
| Date | 2017-05-09 20:20 +0200 |
| Message-ID | <tFhTP-5nA-17@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
With the Cygnus port, we needed to add at least "|| ARCH_BCM_CYGNUS"
to let the module get built on a cygnus-only kernel. However, I
anticipate having a port for Kona soon, so just present the module on
all of BCM.
v2: Keep allowing selection with ARCH_BCM2835, since ARCH_BCM doesn't
exist on arm64.
Signed-off-by: Eric Anholt <eric@anholt.net>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
---
drivers/gpu/drm/vc4/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/vc4/Kconfig b/drivers/gpu/drm/vc4/Kconfig
index 973b4203c0b2..b16aefe4a8d3 100644
--- a/drivers/gpu/drm/vc4/Kconfig
+++ b/drivers/gpu/drm/vc4/Kconfig
@@ -1,6 +1,6 @@
config DRM_VC4
tristate "Broadcom VC4 Graphics"
- depends on ARCH_BCM2835 || COMPILE_TEST
+ depends on ARCH_BCM || ARCH_BCM2835 || COMPILE_TEST
depends on DRM
depends on SND && SND_SOC
depends on COMMON_CLK
--
2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. Eric Anholt <eric@anholt.net> - 2017-05-09 20:20 +0200
Re: [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. Scott Branden <scott.branden@broadcom.com> - 2017-05-09 20:30 +0200
Re: [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. Florian Fainelli <f.fainelli@gmail.com> - 2017-05-10 01:10 +0200
Re: [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. Eric Anholt <eric@anholt.net> - 2017-05-10 01:20 +0200
Re: [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. Florian Fainelli <f.fainelli@gmail.com> - 2017-05-10 01:30 +0200
csiph-web