From patchwork Thu Sep 19 22:33:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 11153519 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 413E81599 for ; Thu, 19 Sep 2019 22:33:41 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1F457208C0 for ; Thu, 19 Sep 2019 22:33:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="dxmMFJh5" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1F457208C0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Date:Message-ID:To:Subject :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=f8ygd6M6vNBtVOt+Ja57JCzDQ9EHqjtsPWPF07C3V5w=; b=dxmMFJh59VU1S6 PZQcRRHpfNXvnGtKaDr0glSgPfkRYSvm4rA+3WkUQI2icEujzSuNAj2+LoxMH9kW4vunQsZf8+kaO 4pi93uDmDmwKCHG1/gBRGFFDbarzmv0v3IXRCphfp/dKSgOQckFKvHetiIEZm2LXFSUzXI/tHUx2I GV53xpn6GJ4khMwsi2rUGpj/qGdrOXYq3awFrBIZcPqN2RkXVClBjV4idLydxZaSDA/gZlizqptnm kunGdE18BGuSpdpjt2IHTF8jHxZQegX12SSQVCuWOParAmHsAFB3CP0aiVSKAMuo1U0EYOndA/4wP edv1udeN4oiuZGs7sPFw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.2 #3 (Red Hat Linux)) id 1iB4zc-0006lT-K7; Thu, 19 Sep 2019 22:33:40 +0000 Received: from [2601:1c0:6280:3f0::9a1f] by bombadil.infradead.org with esmtpsa (Exim 4.92.2 #3 (Red Hat Linux)) id 1iB4zZ-0006j5-V0; Thu, 19 Sep 2019 22:33:38 +0000 From: Randy Dunlap Subject: [PATCH 2/2] soc: ti: move 2 driver config options into the TI SOC drivers menu To: LKML , LAK Message-ID: Date: Thu, 19 Sep 2019 15:33:37 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 Content-Language: en-US X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Olof Johansson , Nishanth Menon , Benjamin Fair , Tony Lindgren , Tero Kristo Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Randy Dunlap Move the AM654 and J721E SOC config options inside the "TI SOC drivers" menu with the other TI SOC drivers. Fixes: a869b7b30dac ("soc: ti: Add Support for AM654 SoC config option") Fixes: cff377f7897a ("soc: ti: Add Support for J721E SoC config option") Signed-off-by: Randy Dunlap Cc: Olof Johansson Cc: Nishanth Menon Cc: Benjamin Fair Cc: Tony Lindgren Cc: Tero Kristo Cc: linux-kernel@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org --- drivers/soc/ti/Kconfig | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) --- lnx-53.orig/drivers/soc/ti/Kconfig +++ lnx-53/drivers/soc/ti/Kconfig @@ -1,4 +1,12 @@ # SPDX-License-Identifier: GPL-2.0-only + +# TI SOC drivers +# +menuconfig SOC_TI + bool "TI SOC drivers support" + +if SOC_TI + # 64-bit ARM SoCs from TI if ARM64 @@ -14,17 +22,9 @@ config ARCH_K3_J721E_SOC help Enable support for TI's J721E SoC Family. -endif +endif # ARCH_K3 -endif - -# -# TI SOC drivers -# -menuconfig SOC_TI - bool "TI SOC drivers support" - -if SOC_TI +endif # ARM64 config KEYSTONE_NAVIGATOR_QMSS tristate "Keystone Queue Manager Subsystem"