From patchwork Sun Aug 22 00:04:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 501210 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=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham 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 8AF17C4338F for ; Sun, 22 Aug 2021 00:04:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 55BE861284 for ; Sun, 22 Aug 2021 00:04:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229950AbhHVAFd (ORCPT ); Sat, 21 Aug 2021 20:05:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57270 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229519AbhHVAFc (ORCPT ); Sat, 21 Aug 2021 20:05:32 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A9AC9C061575; Sat, 21 Aug 2021 17:04:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=2P4f8b9zjkblhd2q55UzBaaO80Xl5R5PMFyRxYqRT5M=; b=I4xMIObofvh8UYoC2Z0vfGwiWx J23bM3jqzUCphMoxfsZWiLNVUO/Ij83w7otea8C1I7rNaIoKi8E+27vLdrFqa2c9s6Rv0+jJGO3/Z JVGfzjUSBg+l9HKT6PchiefflCHBGKQS3Nl8bwt4KLzCTNNCmgcJR5HiSEoOcx24v8drz6ISxlXry xcEzge5MzFsrzyj653lov+MSBSRTxL7KQxQTsRsW8Lpnyjo5u+bdm2m2J/IjYcE96XOqxzABxhmCc jaOBIUclmlVnhQ2QxcHxNG1NCHpRDL7puxsR1BAkwWLUOIWhuGy0nNxjKitPQmMVkm2sBVTvAlcn3 sGJ5dvJQ==; Received: from [2601:1c0:6280:3f0::aa0b] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mHayq-00DLQX-3E; Sun, 22 Aug 2021 00:04:52 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Sean Young , Hans Verkuil , linux-media@vger.kernel.org, Mauro Carvalho Chehab Subject: [PATCH] media: rc and cec: keep all menu entries together Date: Sat, 21 Aug 2021 17:04:50 -0700 Message-Id: <20210822000450.27329-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Keep all of the Remote Controller and CEC menu entries grouped together. This is most relevant to 'make xconfig', where the entries for "HDMI CEC RC integration" and "Enable CEC error injection support" are not displayed (presented) anywhere near the other Remote Controller support options. By grouping all of these menu entries inside a menu/endmenu block, they are forced to be kept together. Fixes: 46d2a3b964dd ("media: place CEC menu before MEDIA_SUPPORT") Signed-off-by: Randy Dunlap Cc: Sean Young Cc: Hans Verkuil Cc: linux-media@vger.kernel.org Cc: Mauro Carvalho Chehab --- drivers/media/Kconfig | 2 ++ 1 file changed, 2 insertions(+) --- linux-next-20210820.orig/drivers/media/Kconfig +++ linux-next-20210820/drivers/media/Kconfig @@ -6,8 +6,10 @@ # # NOTE: CEC and Remote Controller support should not depend on MEDIA_SUPPORT # +menu "Remote Controller and CEC support" source "drivers/media/rc/Kconfig" source "drivers/media/cec/Kconfig" +endmenu menuconfig MEDIA_SUPPORT tristate "Multimedia support"