All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lokesh Vutla <lokeshvutla@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC][PATCH 1/7] ARM: OMAP4: Rename to ti_omap4_common.h
Date: Mon, 23 Dec 2013 17:04:14 +0530	[thread overview]
Message-ID: <52B81FB6.6040808@ti.com> (raw)
In-Reply-To: <1386361824-21900-2-git-send-email-eballetbo@gmail.com>

Hi Enric,

On Saturday 07 December 2013 02:00 AM, Enric Balletbo i Serra wrote:
> Follow the pattern ti_<processor family>_common.h used by other TI processors
> to be coherent. So just rename omap4_common.h to ti_omap4_common.h.
Looks good to me.
Reviewed-by:  Lokesh Vutla <lokeshvutla@ti.com>

Thanks and regards,
Lokesh
> 
> Signed-off-by: Enric Balletbo i Serra <eballetbo@gmail.com>
> ---
>  include/configs/omap4_panda.h                         | 4 ++--
>  include/configs/omap4_sdp4430.h                       | 4 ++--
>  include/configs/{omap4_common.h => ti_omap4_common.h} | 6 +++---
>  3 files changed, 7 insertions(+), 7 deletions(-)
>  rename include/configs/{omap4_common.h => ti_omap4_common.h} (97%)
> 
> diff --git a/include/configs/omap4_panda.h b/include/configs/omap4_panda.h
> index 6820e42..2a8ff5d 100644
> --- a/include/configs/omap4_panda.h
> +++ b/include/configs/omap4_panda.h
> @@ -4,7 +4,7 @@
>   * Steve Sakoman  <steve@sakoman.com>
>   *
>   * Configuration settings for the TI OMAP4 Panda board.
> - * See omap4_common.h for OMAP4 common part
> + * See ti_omap4_common.h for OMAP4 common part
>   *
>   * SPDX-License-Identifier:	GPL-2.0+
>   */
> @@ -39,7 +39,7 @@
>  #define CONFIG_USB_ULPI
>  #define CONFIG_USB_ULPI_VIEWPORT_OMAP
>  
> -#include <configs/omap4_common.h>
> +#include <configs/ti_omap4_common.h>
>  #define CONFIG_CMD_NET
>  
>  /* GPIO */
> diff --git a/include/configs/omap4_sdp4430.h b/include/configs/omap4_sdp4430.h
> index b352511..a837974 100644
> --- a/include/configs/omap4_sdp4430.h
> +++ b/include/configs/omap4_sdp4430.h
> @@ -5,7 +5,7 @@
>   * Steve Sakoman  <steve@sakoman.com>
>   *
>   * Configuration settings for the TI SDP4430 board.
> - * See omap4_common.h for OMAP4 common part
> + * See ti_omap4_common.h for OMAP4 common part
>   *
>   * SPDX-License-Identifier:	GPL-2.0+
>   */
> @@ -19,7 +19,7 @@
>  #define CONFIG_4430SDP		1	/* working with SDP */
>  #define CONFIG_MACH_TYPE	MACH_TYPE_OMAP_4430SDP
>  
> -#include <configs/omap4_common.h>
> +#include <configs/ti_omap4_common.h>
>  
>  /* Battery Charger */
>  #ifndef CONFIG_SPL_BUILD
> diff --git a/include/configs/omap4_common.h b/include/configs/ti_omap4_common.h
> similarity index 97%
> rename from include/configs/omap4_common.h
> rename to include/configs/ti_omap4_common.h
> index ea56eeb..bce32d6 100644
> --- a/include/configs/omap4_common.h
> +++ b/include/configs/ti_omap4_common.h
> @@ -9,8 +9,8 @@
>   * SPDX-License-Identifier:	GPL-2.0+
>   */
>  
> -#ifndef __CONFIG_OMAP4_COMMON_H
> -#define __CONFIG_OMAP4_COMMON_H
> +#ifndef __CONFIG_TI_OMAP4_COMMON_H
> +#define __CONFIG_TI_OMAP4_COMMON_H
>  
>  /*
>   * High Level Configuration Options
> @@ -154,4 +154,4 @@
>  #define CONFIG_SPL_DISPLAY_PRINT
>  #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
>  
> -#endif /* __CONFIG_OMAP4_COMMON_H */
> +#endif /* __CONFIG_TI_OMAP4_COMMON_H */
> 

  reply	other threads:[~2013-12-23 11:34 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-06 20:30 [U-Boot] [RFC][PATCH 0/7] TI: OMAP3: Use common config file Enric Balletbo i Serra
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 1/7] ARM: OMAP4: Rename to ti_omap4_common.h Enric Balletbo i Serra
2013-12-23 11:34   ` Lokesh Vutla [this message]
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 2/7] ARM: OMAP5: Rename to ti_omap5_common.h Enric Balletbo i Serra
2013-12-23 11:38   ` Lokesh Vutla
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 3/7] TI: armv7: Move ELM support to SoC configuration file Enric Balletbo i Serra
2013-12-23 11:41   ` Lokesh Vutla
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 4/7] TI: armv7: Do not define the number DRAM banks if is already defined Enric Balletbo i Serra
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 5/7] ARM: OMAP3: Rename OMAP3_PUBLIC_SRAM_* to NON_SECURE_SRAM_* Enric Balletbo i Serra
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 6/7] TI: OMAP3: Create common config files for TI OMAP3 platforms Enric Balletbo i Serra
2013-12-06 20:30 ` [U-Boot] [RFC][PATCH 7/7] OMAP3: igep00x0: Convert to ti_omap3_common.h Enric Balletbo i Serra
2013-12-23 11:11 ` [U-Boot] [RFC][PATCH 0/7] TI: OMAP3: Use common config file Enric Balletbo Serra
2014-01-06 17:36   ` Tom Rini
2014-01-24  8:45     ` Enric Balletbo Serra
2014-01-24 13:37       ` Tom Rini
2014-01-24 14:13         ` Enric Balletbo Serra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52B81FB6.6040808@ti.com \
    --to=lokeshvutla@ti.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.