From mboxrd@z Thu Jan 1 00:00:00 1970 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=-10.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,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 E9068C2D0EE for ; Tue, 31 Mar 2020 11:12:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BBABF208E4 for ; Tue, 31 Mar 2020 11:12:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585653159; bh=CDNkKT+WGBE8A+SIyPmXUKUa9zl4UOXgsgFGt7DDGMM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=lnYr1X58EjIq3rr9H4uEyyNVmp1CBOx/SwhI9dvdSxFg6rvyU78+FZ8TVBBgsbZ81 xW/NgDWG2knZNTsXjChHl6pMbFafuqoUNGgUhpbDTJcoUQS9LC0FttG0WH1vf5da/Y PvtWn+WXGxYe6rTz+bJCKpmDxeWJh8a0OLGKn1zk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730590AbgCaLMO (ORCPT ); Tue, 31 Mar 2020 07:12:14 -0400 Received: from mail.kernel.org ([198.145.29.99]:57784 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730437AbgCaLMN (ORCPT ); Tue, 31 Mar 2020 07:12:13 -0400 Received: from mail.kernel.org (ip5f5ad4d8.dynamic.kabel-deutschland.de [95.90.212.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 441E720B1F; Tue, 31 Mar 2020 11:12:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585653133; bh=CDNkKT+WGBE8A+SIyPmXUKUa9zl4UOXgsgFGt7DDGMM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Oe9B9Xa9yEMdBbOiR6v+pVaW6llgxzeMT0SKblwLs1bVgEMoSo0u2smM+w3aJ8E3N J7kzvePf6TRYIKVtG8kBrvmnwwni5w9usul54XhG5IgQ4/JHfV7Q2vyFYU01xj4907 9kHBIhhDr5+QkzH9a8I5ZYWWpbzW33roXTsme+TU= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1jJEoV-002bqM-7b; Tue, 31 Mar 2020 13:12:11 +0200 From: Mauro Carvalho Chehab To: Linux Media Mailing List Cc: Mauro Carvalho Chehab Subject: [PATCH v4 07/33] media: Kconfig: move comment to siano include Date: Tue, 31 Mar 2020 13:11:43 +0200 Message-Id: <2bff806eab10fcf9fc6f6c865341d92f305f5d92.1585651678.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Showing this comment without showing the Siano mmc option is very weird! Place the option together, and make it visible only when showing Siano configuration. Signed-off-by: Mauro Carvalho Chehab --- drivers/media/mmc/Kconfig | 1 - drivers/media/mmc/siano/Kconfig | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/media/mmc/Kconfig b/drivers/media/mmc/Kconfig index de0528c6994a..75aa6de08d53 100644 --- a/drivers/media/mmc/Kconfig +++ b/drivers/media/mmc/Kconfig @@ -1,3 +1,2 @@ # SPDX-License-Identifier: GPL-2.0-only -comment "Supported MMC/SDIO adapters" source "drivers/media/mmc/siano/Kconfig" diff --git a/drivers/media/mmc/siano/Kconfig b/drivers/media/mmc/siano/Kconfig index 1919f6fea8b1..570696019a9e 100644 --- a/drivers/media/mmc/siano/Kconfig +++ b/drivers/media/mmc/siano/Kconfig @@ -2,6 +2,8 @@ # # Siano Mobile Silicon Digital TV device configuration # +comment "MMC/SDIO DVB adapters" + depends on DVB_CORE && HAS_DMA && MMC config SMS_SDIO_DRV tristate "Siano SMS1xxx based MDTV via SDIO interface" -- 2.25.1