From patchwork Mon Mar 23 21:10:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ezequiel Garcia X-Patchwork-Id: 210489 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, UNPARSEABLE_RELAY, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9D47EC43331 for ; Mon, 23 Mar 2020 21:10:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7AA3620781 for ; Mon, 23 Mar 2020 21:10:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727064AbgCWVKq (ORCPT ); Mon, 23 Mar 2020 17:10:46 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:40486 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726177AbgCWVKp (ORCPT ); Mon, 23 Mar 2020 17:10:45 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: ezequiel) with ESMTPSA id A5D79296002 From: Ezequiel Garcia To: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Tomasz Figa , Nicolas Dufresne , kernel@collabora.com, Hans Verkuil , Sean Young , Philipp Zabel , Laurent Pinchart , Sakari Ailus , Michael Ira Krufky , Mauro Carvalho Chehab , Helen Koike , Ezequiel Garcia Subject: [PATCH 2/2] media: Remove VIDEO_DEV unneeded dependency Date: Mon, 23 Mar 2020 18:10:22 -0300 Message-Id: <20200323211022.28297-3-ezequiel@collabora.com> X-Mailer: git-send-email 2.26.0.rc2 In-Reply-To: <20200323211022.28297-1-ezequiel@collabora.com> References: <20200323211022.28297-1-ezequiel@collabora.com> MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Enable VIDEO_DEV (which compiles Video4Linux core) when MEDIA_SUPPORT is selected. This is needed, in order to be able to enable devices such as stateless codecs. Signed-off-by: Ezequiel Garcia --- drivers/media/Kconfig | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig index b36a41332867..7de472ad07a2 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig @@ -93,13 +93,11 @@ source "drivers/media/mc/Kconfig" # # Video4Linux support -# Only enables if one of the V4L2 types (ATV, webcam, radio) is selected # config VIDEO_DEV tristate depends on MEDIA_SUPPORT - depends on MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT default y config VIDEO_V4L2_SUBDEV_API