From patchwork Tue Nov 28 18:26:36 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13471536 Authentication-Results: smtp.subspace.kernel.org; dkim=none Received: from andre.telenet-ops.be (andre.telenet-ops.be [IPv6:2a02:1800:120:4::f00:15]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BC434137 for ; Tue, 28 Nov 2023 10:26:46 -0800 (PST) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:f4d4:eef9:4487:4eb1]) by andre.telenet-ops.be with bizsmtp id FuSe2B00E2jytoH01uSec1; Tue, 28 Nov 2023 19:26:44 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1r82ms-00AHWm-F7; Tue, 28 Nov 2023 19:26:38 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1r82n8-00B9me-GS; Tue, 28 Nov 2023 19:26:38 +0100 From: Geert Uytterhoeven To: Nas Chung , Jackson Lee , Mauro Carvalho Chehab , Dafna Hirschfeld , Sebastian Fricke , Robert Beckett , Hans Verkuil , Nicolas Dufresne Cc: Nishanth Menon , Vignesh Raghavendra , Tero Kristo , linux-media@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH -next] media: chips-media: VIDEO_WAVE_VPU should depend on ARCH_K3 Date: Tue, 28 Nov 2023 19:26:36 +0100 Message-Id: X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The Chips&Media Wave 5 Series multi-standard codec IP is currently only supported on Texas Instruments K3 J721S2 SoC. Hence add a dependency on ARCH_K3, to prevent asking the user about this driver when configuring a kernel without Texas Instruments K3 Multicore SoC support. Fixes: 9707a6254a8a6b97 ("media: chips-media: wave5: Add the v4l2 layer") Signed-off-by: Geert Uytterhoeven Reviewed-by: Nishanth Menon --- drivers/media/platform/chips-media/wave5/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/chips-media/wave5/Kconfig b/drivers/media/platform/chips-media/wave5/Kconfig index 77e7ae5c8f35f454..9ccc1f7e32f3874f 100644 --- a/drivers/media/platform/chips-media/wave5/Kconfig +++ b/drivers/media/platform/chips-media/wave5/Kconfig @@ -3,6 +3,7 @@ config VIDEO_WAVE_VPU tristate "Chips&Media Wave Codec Driver" depends on V4L_MEM2MEM_DRIVERS depends on VIDEO_DEV && OF + depends on ARCH_K3 || COMPILE_TEST select VIDEOBUF2_DMA_CONTIG select VIDEOBUF2_VMALLOC select V4L2_MEM2MEM_DEV