From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751110AbdEIXIc (ORCPT ); Tue, 9 May 2017 19:08:32 -0400 Received: from mail-qk0-f196.google.com ([209.85.220.196]:34716 "EHLO mail-qk0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750747AbdEIXIa (ORCPT ); Tue, 9 May 2017 19:08:30 -0400 Subject: Re: [PATCH v2] drm/vc4: Enable selection in Kconfig on any 32-bit BCM platform. To: Eric Anholt , dri-devel@lists.freedesktop.org, bcm-kernel-feedback-list@broadcom.com, Florian Fainelli , Ray Jui , Scott Branden , Jon Mason References: <20170509181539.30278-1-eric@anholt.net> Cc: linux-kernel@vger.kernel.org, mircea.carausu@broadcom.com From: Florian Fainelli Message-ID: Date: Tue, 9 May 2017 16:08:25 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170509181539.30278-1-eric@anholt.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/09/2017 11:15 AM, Eric Anholt wrote: > 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. Nit: the patch changelog usually goes after the "---" line so it gets stripped with git am. Not necessary to resubmit just because of that. > > Signed-off-by: Eric Anholt > Acked-by: Daniel Vetter (v1) Acked-by: Florian Fainelli > --- > 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 > -- Florian