riscv: Fix coding style issues in the linker script

There are several coding style issues in the linker script. Fix them.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
lime2-spi
Bin Meng 6 years ago committed by Andes
parent dfb828ed1c
commit 3d6015651b
  1. 8
      arch/riscv/cpu/u-boot.lds

@ -3,14 +3,14 @@
* Copyright (C) 2017 Andes Technology Corporation * Copyright (C) 2017 Andes Technology Corporation
* Rick Chen, Andes Technology Corporation <rick@andestech.com> * Rick Chen, Andes Technology Corporation <rick@andestech.com>
*/ */
OUTPUT_ARCH("riscv") OUTPUT_ARCH("riscv")
ENTRY(_start) ENTRY(_start)
SECTIONS SECTIONS
{ {
. = ALIGN(4); . = ALIGN(4);
.text : .text : {
{
arch/riscv/cpu/ax25/start.o (.text) arch/riscv/cpu/ax25/start.o (.text)
} }
@ -23,8 +23,7 @@ SECTIONS
__efi_runtime_stop = .; __efi_runtime_stop = .;
} }
.text_rest : .text_rest : {
{
*(.text*) *(.text*)
} }
@ -86,5 +85,4 @@ SECTIONS
. = ALIGN(4); . = ALIGN(4);
__bss_end = .; __bss_end = .;
} }
} }

Loading…
Cancel
Save