diff mbox

[U-Boot] sandbox: tweak style in linker script

Message ID 1330284373-32723-1-git-send-email-vapier@gentoo.org
State Accepted
Commit 3ab7d95aa0b57c5976e1cbb1cd80ec1a24ffa78a
Delegated to: Mike Frysinger
Headers show

Commit Message

Mike Frysinger Feb. 26, 2012, 7:26 p.m. UTC
We use tabs for indentation, not spaces.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 arch/sandbox/cpu/u-boot.lds |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

Comments

Simon Glass Feb. 27, 2012, 2:57 a.m. UTC | #1
On Sun, Feb 26, 2012 at 11:26 AM, Mike Frysinger <vapier@gentoo.org> wrote:
> We use tabs for indentation, not spaces.
>
> Signed-off-by: Mike Frysinger <vapier@gentoo.org>

Acked-by: Simon Glass <sjg@chromium.org>

> ---
>  arch/sandbox/cpu/u-boot.lds |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/arch/sandbox/cpu/u-boot.lds b/arch/sandbox/cpu/u-boot.lds
> index 2d2e50f..0c56aa7 100644
> --- a/arch/sandbox/cpu/u-boot.lds
> +++ b/arch/sandbox/cpu/u-boot.lds
> @@ -1,5 +1,5 @@
>  /*
> - * Copyright (c) 2011 The Chromium OS Authors.
> + * Copyright (c) 2011-2012 The Chromium OS Authors.
>  * Use of this source code is governed by a BSD-style license that can be
>  * found in the LICENSE file.
>  *
> @@ -24,11 +24,11 @@
>
>  SECTIONS
>  {
> -  __u_boot_cmd_start = .;
> -  .u_boot_cmd : { *(.u_boot_cmd) }
> -  __u_boot_cmd_end = .;
> -  __bss_start = .;
> +       __u_boot_cmd_start = .;
> +       _u_boot_cmd : { *(.u_boot_cmd) }
> +       __u_boot_cmd_end = .;
>
> +       __bss_start = .;
>  }
>
>  INSERT BEFORE .data;
> --
> 1.7.8.4
>
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
diff mbox

Patch

diff --git a/arch/sandbox/cpu/u-boot.lds b/arch/sandbox/cpu/u-boot.lds
index 2d2e50f..0c56aa7 100644
--- a/arch/sandbox/cpu/u-boot.lds
+++ b/arch/sandbox/cpu/u-boot.lds
@@ -1,5 +1,5 @@ 
 /*
- * Copyright (c) 2011 The Chromium OS Authors.
+ * Copyright (c) 2011-2012 The Chromium OS Authors.
  * Use of this source code is governed by a BSD-style license that can be
  * found in the LICENSE file.
  *
@@ -24,11 +24,11 @@ 
 
 SECTIONS
 {
-  __u_boot_cmd_start = .;
-  .u_boot_cmd : { *(.u_boot_cmd) }
-  __u_boot_cmd_end = .;
-  __bss_start = .;
+	__u_boot_cmd_start = .;
+	_u_boot_cmd : { *(.u_boot_cmd) }
+	__u_boot_cmd_end = .;
 
+	__bss_start = .;
 }
 
 INSERT BEFORE .data;