From patchwork Mon Sep 29 01:18:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 394240 X-Patchwork-Delegate: promsoft@gmail.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 99B9214012C for ; Mon, 29 Sep 2014 11:20:46 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2003DA7489; Mon, 29 Sep 2014 03:20:09 +0200 (CEST) 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 GMA07vdOH4o6; Mon, 29 Sep 2014 03:20:08 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CE686A742D; Mon, 29 Sep 2014 03:19:40 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 00506A7458 for ; Mon, 29 Sep 2014 03:19:16 +0200 (CEST) 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 UgSV9coaB5Te for ; Mon, 29 Sep 2014 03:19:15 +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 mail-ie0-f201.google.com (mail-ie0-f201.google.com [209.85.223.201]) by theia.denx.de (Postfix) with ESMTPS id 76B4AA7464 for ; Mon, 29 Sep 2014 03:19:08 +0200 (CEST) Received: by mail-ie0-f201.google.com with SMTP id rl12so93289iec.0 for ; Sun, 28 Sep 2014 18:19:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=zdapuPhRQwj6Xr64VmaIw5jq/qmkySaSnAUCoOmXFKg=; b=EK68XaWiaeuHDmszqHsELfVZATefpU+1TIBs7LglZX50JQAQLycCNJkDZGUPolZL2p itXRIPyFDNvuwtwuP2jSWblt8QlrnIESymmkC/LxmrvJaj0LRjtvMiKThgiknWEcJLRH Ve8JTqed0Te0RuUgCmjm6J2+Idv6AyOTtORlSbvCgf1tTgWJw+3gbvbpLw6IJlaYADwu e9LLfE3lgCddvrFw+sfC38XJAxAIUREZHsNB3AelP6DZO4Y0YUer0B45Lq8VjjGthIDo W3GIHnUwVKHU13lCmYlTK+wnTCs6V2qFg3Egd+o/4sIKmiTU06xiQocpVPUfa56f2PcX Qzhg== X-Gm-Message-State: ALoCoQmB+mHCaArAyecYvqyAtVVtxrtDB2L/6cyRl20KDxTNknC19vwu5sXKM9YNUquwfFlDZ1a5 X-Received: by 10.42.118.200 with SMTP id y8mr34473717icq.4.1411953547501; Sun, 28 Sep 2014 18:19:07 -0700 (PDT) Received: from corpmail-nozzle1-2.hot.corp.google.com ([100.108.1.103]) by gmr-mx.google.com with ESMTPS id j25si669329yhb.0.2014.09.28.18.19.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 28 Sep 2014 18:19:07 -0700 (PDT) Received: from kaki.bld.corp.google.com ([172.29.216.32]) by corpmail-nozzle1-2.hot.corp.google.com with ESMTP id JyzJVSOG.1; Sun, 28 Sep 2014 18:19:07 -0700 Received: by kaki.bld.corp.google.com (Postfix, from userid 121222) id 0E80D222920; Sun, 28 Sep 2014 19:19:06 -0600 (MDT) From: Simon Glass To: U-Boot Mailing List Date: Sun, 28 Sep 2014 19:18:46 -0600 Message-Id: <1411953534-4652-8-git-send-email-sjg@chromium.org> X-Mailer: git-send-email 2.1.0.rc2.206.gedb03e5 In-Reply-To: <1411953534-4652-1-git-send-email-sjg@chromium.org> References: <1411953534-4652-1-git-send-email-sjg@chromium.org> Cc: Chander Kashyap , Przemyslaw Marczak , Ajay Kumar Subject: [U-Boot] [PATCH v4 07/15] exynos: Rename -dt config files to -common X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.13 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de We want exynos5250-dt.h to be a board which can support any exynos5250 device. This matches the naming used by Linux. As a first step, rename the existing -dt files to -common to make it clear they are common files, and not specific boards. Signed-off-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: None include/configs/{exynos4-dt.h => exynos4-common.h} | 6 +++--- include/configs/{exynos5-dt.h => exynos5-common.h} | 6 +++--- include/configs/{exynos5250-dt.h => exynos5250-common.h} | 2 +- include/configs/odroid.h | 2 +- include/configs/origen.h | 2 +- include/configs/peach-pit.h | 2 +- include/configs/s5pc210_universal.h | 2 +- include/configs/smdk5250.h | 2 +- include/configs/smdk5420.h | 2 +- include/configs/snow.h | 2 +- include/configs/trats.h | 2 +- include/configs/trats2.h | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) rename include/configs/{exynos4-dt.h => exynos4-common.h} (97%) rename include/configs/{exynos5-dt.h => exynos5-common.h} (98%) rename include/configs/{exynos5250-dt.h => exynos5250-common.h} (97%) diff --git a/include/configs/exynos4-dt.h b/include/configs/exynos4-common.h similarity index 97% rename from include/configs/exynos4-dt.h rename to include/configs/exynos4-common.h index 99472ac..38b8961 100644 --- a/include/configs/exynos4-dt.h +++ b/include/configs/exynos4-common.h @@ -6,8 +6,8 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#ifndef __CONFIG_H -#define __CONFIG_H +#ifndef __CONFIG_EXYNOS4_COMMON_H +#define __CONFIG_EXYNOS4_COMMON_H /* High Level Configuration Options */ #define CONFIG_SAMSUNG /* in a SAMSUNG core */ @@ -136,4 +136,4 @@ /* Enable devicetree support */ #define CONFIG_OF_LIBFDT -#endif /* __CONFIG_H */ +#endif /* __CONFIG_EXYNOS4_COMMON_H */ diff --git a/include/configs/exynos5-dt.h b/include/configs/exynos5-common.h similarity index 98% rename from include/configs/exynos5-dt.h rename to include/configs/exynos5-common.h index 0c400b1..fede0e8 100644 --- a/include/configs/exynos5-dt.h +++ b/include/configs/exynos5-common.h @@ -6,8 +6,8 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#ifndef __CONFIG_H -#define __CONFIG_H +#ifndef __CONFIG_EXYNOS5_COMMON_H +#define __CONFIG_EXYNOS5_COMMON_H /* High Level Configuration Options */ #define CONFIG_SAMSUNG /* in a SAMSUNG core */ @@ -289,4 +289,4 @@ #define EXYNOS_USB_SECONDARY_BOOT 0xfeed0002 #define EXYNOS_IRAM_SECONDARY_BASE 0x02020018 -#endif /* __CONFIG_H */ +#endif /* __CONFIG_EXYNOS5_COMMON_H */ diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-common.h similarity index 97% rename from include/configs/exynos5250-dt.h rename to include/configs/exynos5250-common.h index 05d33a7..b4c1ccf 100644 --- a/include/configs/exynos5250-dt.h +++ b/include/configs/exynos5250-common.h @@ -10,7 +10,7 @@ #ifndef __CONFIG_5250_H #define __CONFIG_5250_H -#include +#include #define CONFIG_EXYNOS5250 #define CONFIG_SYS_SDRAM_BASE 0x40000000 diff --git a/include/configs/odroid.h b/include/configs/odroid.h index b616ac2..07a2ff6 100644 --- a/include/configs/odroid.h +++ b/include/configs/odroid.h @@ -12,7 +12,7 @@ #ifndef __CONFIG_ODROID_U3_H #define __CONFIG_ODROID_U3_H -#include +#include #define CONFIG_SYS_PROMPT "Odroid # " /* Monitor Command Prompt */ diff --git a/include/configs/origen.h b/include/configs/origen.h index fb1536c..fc8a202 100644 --- a/include/configs/origen.h +++ b/include/configs/origen.h @@ -9,7 +9,7 @@ #ifndef __CONFIG_ORIGEN_H #define __CONFIG_ORIGEN_H -#include +#include #define CONFIG_SYS_PROMPT "ORIGEN # " diff --git a/include/configs/peach-pit.h b/include/configs/peach-pit.h index 8db889c..5e428cc 100644 --- a/include/configs/peach-pit.h +++ b/include/configs/peach-pit.h @@ -9,7 +9,7 @@ #ifndef __CONFIG_PEACH_PIT_H #define __CONFIG_PEACH_PIT_H -#include +#include #include diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h index 082d51c..e26522d 100644 --- a/include/configs/s5pc210_universal.h +++ b/include/configs/s5pc210_universal.h @@ -10,7 +10,7 @@ #ifndef __CONFIG_UNIVERSAL_H #define __CONFIG_UNIVERSAL_H -#include +#include #define CONFIG_SYS_PROMPT "Universal # " /* Monitor Command Prompt */ diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index 6117094..56d41e6 100644 --- a/include/configs/smdk5250.h +++ b/include/configs/smdk5250.h @@ -9,7 +9,7 @@ #ifndef __CONFIG_SMDK_H #define __CONFIG_SMDK_H -#include +#include /* Enable FIT support and comparison */ diff --git a/include/configs/smdk5420.h b/include/configs/smdk5420.h index 36a156f..abda141 100644 --- a/include/configs/smdk5420.h +++ b/include/configs/smdk5420.h @@ -9,7 +9,7 @@ #ifndef __CONFIG_SMDK5420_H #define __CONFIG_SMDK5420_H -#include +#include #include diff --git a/include/configs/snow.h b/include/configs/snow.h index fbaaa59..2942fdf 100644 --- a/include/configs/snow.h +++ b/include/configs/snow.h @@ -9,7 +9,7 @@ #ifndef __CONFIG_SNOW_H #define __CONFIG_SNOW_H -#include +#include /* Enable FIT support and comparison */ diff --git a/include/configs/trats.h b/include/configs/trats.h index 43751e7..c7edd07 100644 --- a/include/configs/trats.h +++ b/include/configs/trats.h @@ -10,7 +10,7 @@ #ifndef __CONFIG_TRATS_H #define __CONFIG_TRATS_H -#include +#include #define CONFIG_SYS_PROMPT "Trats # " /* Monitor Command Prompt */ diff --git a/include/configs/trats2.h b/include/configs/trats2.h index e9a04f7..de72651 100644 --- a/include/configs/trats2.h +++ b/include/configs/trats2.h @@ -11,7 +11,7 @@ #ifndef __CONFIG_TRATS2_H #define __CONFIG_TRATS2_H -#include +#include #define CONFIG_SYS_PROMPT "Trats2 # " /* Monitor Command Prompt */