From patchwork Fri Sep 26 11:58:11 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Khoronzhuk X-Patchwork-Id: 393704 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id A957A140092 for ; Fri, 26 Sep 2014 21:58:51 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5B7144A03C; Fri, 26 Sep 2014 13:58:50 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W8wL0GCiQFI4; Fri, 26 Sep 2014 13:58:50 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 837954A03F; Fri, 26 Sep 2014 13:58:48 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DD8F14A03F for ; Fri, 26 Sep 2014 13:58:45 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rPcoc3YJTaE6 for ; Fri, 26 Sep 2014 13:58:43 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by theia.denx.de (Postfix) with ESMTPS id 447D74A02E for ; Fri, 26 Sep 2014 13:58:35 +0200 (CEST) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id s8QBwXDZ010164 for ; Fri, 26 Sep 2014 06:58:33 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s8QBwXkj008794 for ; Fri, 26 Sep 2014 06:58:33 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Fri, 26 Sep 2014 06:58:34 -0500 Received: from khorivan.synapse.com (incasgf5a_e1_2.itg.ti.com [10.167.216.36]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s8QBwHlI005295; Fri, 26 Sep 2014 06:58:20 -0500 From: Ivan Khoronzhuk To: , Date: Fri, 26 Sep 2014 14:58:11 +0300 Message-ID: <1411732695-18070-2-git-send-email-ivan.khoronzhuk@ti.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1411732695-18070-1-git-send-email-ivan.khoronzhuk@ti.com> References: <1411732695-18070-1-git-send-email-ivan.khoronzhuk@ti.com> MIME-Version: 1.0 Cc: w-kwok2@ti.com Subject: [U-Boot] [U-boot] [Patch 1/5] soc: add soc specific drivers directory X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Add soc specific drivers directory like in the Linux kernel. It is going to be used by keysotone soc specific drivers. Signed-off-by: Ivan Khoronzhuk --- drivers/Makefile | 2 ++ drivers/soc/Makefile | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 drivers/soc/Makefile diff --git a/drivers/Makefile b/drivers/Makefile index b22b109..fc9b630 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -16,3 +16,5 @@ obj-y += watchdog/ obj-$(CONFIG_QE) += qe/ obj-y += memory/ obj-y += pwm/ +# SOC specific infrastructure drivers. +obj-y += soc/ diff --git a/drivers/soc/Makefile b/drivers/soc/Makefile new file mode 100644 index 0000000..1746cd8 --- /dev/null +++ b/drivers/soc/Makefile @@ -0,0 +1,3 @@ +# +# Makefile for the u-boot SOC specific device drivers. +#