From patchwork Thu Jun 4 09:40:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 64268 Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1jgmIo-00HHwh-IN; Thu, 04 Jun 2020 09:36:46 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728143AbgFDJke (ORCPT + 1 other); Thu, 4 Jun 2020 05:40:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727879AbgFDJke (ORCPT ); Thu, 4 Jun 2020 05:40:34 -0400 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 C48F9C03E96E for ; Thu, 4 Jun 2020 02:40:33 -0700 (PDT) Received: from ramsan ([IPv6:2a02:1810:ac12:ed60:c96f:783c:a430:4a5a]) by andre.telenet-ops.be with bizsmtp id mxgX2200t0MBGRv01xgXJU; Thu, 04 Jun 2020 11:40:32 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1jgmMR-0001SK-Rn; Thu, 04 Jun 2020 11:40:31 +0200 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1jgmMR-0003xi-Qh; Thu, 04 Jun 2020 11:40:31 +0200 From: Geert Uytterhoeven To: Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] media: Remove superfluous dependency for MEDIA_SUPPORT_FILTER Date: Thu, 4 Jun 2020 11:40:30 +0200 Message-Id: <20200604094030.14564-1-geert@linux-m68k.org> X-Mailer: git-send-email 2.17.1 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-LSpam-Score: -2.4 (--) X-LSpam-Report: No, score=-2.4 required=5.0 tests=BAYES_00=-1.9,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1 autolearn=ham autolearn_force=no The MEDIA_SUPPORT_FILTER configuration option is located inside a block protected by "#if MEDIA_SUPPORT", so there is no need to have an explicit dependency on MEDIA_SUPPORT. Drop it. Fixes: c6774ee035dcb878 ("media: Kconfig: make filtering devices optional") Signed-off-by: Geert Uytterhoeven --- drivers/media/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig index a6d073f2e036aa34..6222b3ae220ba85b 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig @@ -24,7 +24,6 @@ if MEDIA_SUPPORT config MEDIA_SUPPORT_FILTER bool "Filter media drivers" - depends on MEDIA_SUPPORT default y if !EMBEDDED && !EXPERT help Configuring the media subsystem can be complex, as there are