From patchwork Thu Apr 24 16:31:19 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Gross X-Patchwork-Id: 4052801 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 3A5DDBFF02 for ; Thu, 24 Apr 2014 16:34:20 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2873220306 for ; Thu, 24 Apr 2014 16:34:19 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 595F6202EC for ; Thu, 24 Apr 2014 16:34:18 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WdMZa-0001gU-8s; Thu, 24 Apr 2014 16:32:30 +0000 Received: from smtp.codeaurora.org ([198.145.11.231]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WdMZV-0001bv-K8 for linux-arm-kernel@lists.infradead.org; Thu, 24 Apr 2014 16:32:27 +0000 Received: from smtp.codeaurora.org (localhost [127.0.0.1]) by smtp.codeaurora.org (Postfix) with ESMTP id A64FA13F117; Thu, 24 Apr 2014 16:32:05 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 486) id 97C3613F194; Thu, 24 Apr 2014 16:32:05 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from localhost (rrcs-67-52-129-61.west.biz.rr.com [67.52.129.61]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: agross@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 1EF7F13F128; Thu, 24 Apr 2014 16:32:05 +0000 (UTC) From: Andy Gross To: linux-kernel@vger.kernel.org Subject: [Patch v2 1/4] soc: Placeholder files for drivers/soc Date: Thu, 24 Apr 2014 11:31:19 -0500 Message-Id: <1398357082-5102-2-git-send-email-agross@codeaurora.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1398357082-5102-1-git-send-email-agross@codeaurora.org> References: <1398357082-5102-1-git-send-email-agross@codeaurora.org> X-Virus-Scanned: ClamAV using ClamSMTP X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140424_093225_730121_42FDC1E7 X-CRM114-Status: GOOD ( 12.19 ) X-Spam-Score: -0.7 (/) Cc: devicetree@vger.kernel.org, Greg Kroah-Hartman , linux-arm-msm@vger.kernel.org, Andy Gross , Santosh Shilimkar , Kumar Gala , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP Add placeholder Kconfig and linkage for driver/soc. The first patch set that implemented this was authored by Santosh Shilimkar: https://lkml.org/lkml/2014/2/28/567 Signed-off-by: Andy Gross --- drivers/Kconfig | 2 ++ drivers/Makefile | 4 ++++ drivers/soc/Kconfig | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 drivers/soc/Kconfig diff --git a/drivers/Kconfig b/drivers/Kconfig index b3138fb..37f955f 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -130,6 +130,8 @@ source "drivers/staging/Kconfig" source "drivers/platform/Kconfig" +source "drivers/soc/Kconfig" + source "drivers/clk/Kconfig" source "drivers/hwspinlock/Kconfig" diff --git a/drivers/Makefile b/drivers/Makefile index 8e3b8b0..ba77e7b 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -132,6 +132,10 @@ obj-$(CONFIG_VHOST_RING) += vhost/ obj-$(CONFIG_VLYNQ) += vlynq/ obj-$(CONFIG_STAGING) += staging/ obj-y += platform/ + +# soc specific drivers +obj-y += soc/ + #common clk code obj-y += clk/ diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig new file mode 100644 index 0000000..58bd962 --- /dev/null +++ b/drivers/soc/Kconfig @@ -0,0 +1,4 @@ +menu "SOC specific Drivers" + +endmenu +`