aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2015-06-06 19:48:25 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-06-08 00:55:07 +0200
commit52648623e03e6769ae73ef8ee999d671fb657d62 (patch)
tree2e0c7675c40463cb7864b0b119e50eeadf892a78 /src/arch
parent4ba3b79537008b4d2448848901212cf2251188d1 (diff)
Remove empty lines at end of file
Used command line to remove empty lines at end of file: find . -type f -exec sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' {} \; Change-Id: I816ac9666b6dbb7c7e47843672f0d5cc499766a3 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: http://review.coreboot.org/10446 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/arm/armv7/exception_asm.S1
-rw-r--r--src/arch/arm/armv7/timestamp.c1
-rw-r--r--src/arch/arm/cpu.c1
-rw-r--r--src/arch/arm64/include/clocks.h1
-rw-r--r--src/arch/arm64/timestamp.c1
-rw-r--r--src/arch/mips/ashldi3.c1
-rw-r--r--src/arch/riscv/include/arch/cpu.h1
-rw-r--r--src/arch/riscv/include/arch/header.ld1
-rw-r--r--src/arch/riscv/include/arch/hlt.h2
-rw-r--r--src/arch/riscv/include/arch/memlayout.h1
-rw-r--r--src/arch/riscv/prologue.inc1
-rw-r--r--src/arch/x86/boot/wakeup.S1
-rw-r--r--src/arch/x86/init/crt0_romcc_epilogue.inc1
-rw-r--r--src/arch/x86/init/prologue.inc1
-rw-r--r--src/arch/x86/lib/timestamp.c1
15 files changed, 0 insertions, 16 deletions
diff --git a/src/arch/arm/armv7/exception_asm.S b/src/arch/arm/armv7/exception_asm.S
index 1f369bcc05..f54cd85f9f 100644
--- a/src/arch/arm/armv7/exception_asm.S
+++ b/src/arch/arm/armv7/exception_asm.S
@@ -104,4 +104,3 @@ exception_handler:
set_vbar:
mcr p15, 0, r0, c12, c0, 0
bx lr
-
diff --git a/src/arch/arm/armv7/timestamp.c b/src/arch/arm/armv7/timestamp.c
index 76e664a183..1b3138f9a8 100644
--- a/src/arch/arm/armv7/timestamp.c
+++ b/src/arch/arm/armv7/timestamp.c
@@ -26,4 +26,3 @@ uint64_t timestamp_get(void)
timer_monotonic_get(&timestamp);
return (uint64_t)timestamp.microseconds;
}
-
diff --git a/src/arch/arm/cpu.c b/src/arch/arm/cpu.c
index e02fed30a2..240d924b75 100644
--- a/src/arch/arm/cpu.c
+++ b/src/arch/arm/cpu.c
@@ -44,4 +44,3 @@ struct cpu_info *cpu_info(void)
addr -= sizeof(struct cpu_info);
return (void *)addr;
}
-
diff --git a/src/arch/arm64/include/clocks.h b/src/arch/arm64/include/clocks.h
index 64e6d0df29..96cdd06adc 100644
--- a/src/arch/arm64/include/clocks.h
+++ b/src/arch/arm64/include/clocks.h
@@ -40,4 +40,3 @@ enum {
CLK_216M = 216000000,
CLK_300M = 300000000,
};
-
diff --git a/src/arch/arm64/timestamp.c b/src/arch/arm64/timestamp.c
index cfadf1d7f2..2962c7fe9b 100644
--- a/src/arch/arm64/timestamp.c
+++ b/src/arch/arm64/timestamp.c
@@ -26,4 +26,3 @@ uint64_t timestamp_get(void)
timer_monotonic_get(&timestamp);
return (uint64_t)timestamp.microseconds;
}
-
diff --git a/src/arch/mips/ashldi3.c b/src/arch/mips/ashldi3.c
index 18af6b32e7..de9f738252 100644
--- a/src/arch/mips/ashldi3.c
+++ b/src/arch/mips/ashldi3.c
@@ -57,4 +57,3 @@ long long __ashldi3(long long u, word_type b)
return w.ll;
}
-
diff --git a/src/arch/riscv/include/arch/cpu.h b/src/arch/riscv/include/arch/cpu.h
index 5da91e92f4..d8fd751e3d 100644
--- a/src/arch/riscv/include/arch/cpu.h
+++ b/src/arch/riscv/include/arch/cpu.h
@@ -50,4 +50,3 @@ struct cpuinfo_riscv {
struct cpu_info *cpu_info(void);
#endif /* __ARCH_CPU_H__ */
-
diff --git a/src/arch/riscv/include/arch/header.ld b/src/arch/riscv/include/arch/header.ld
index ee4ca427f0..92dec4f1ca 100644
--- a/src/arch/riscv/include/arch/header.ld
+++ b/src/arch/riscv/include/arch/header.ld
@@ -30,4 +30,3 @@ ENTRY(_start)
#else
ENTRY(stage_entry)
#endif
-
diff --git a/src/arch/riscv/include/arch/hlt.h b/src/arch/riscv/include/arch/hlt.h
index 12099a9b9b..d00302f4df 100644
--- a/src/arch/riscv/include/arch/hlt.h
+++ b/src/arch/riscv/include/arch/hlt.h
@@ -2,5 +2,3 @@ static inline __attribute__((always_inline)) void hlt(void)
{
while(1);
}
-
-
diff --git a/src/arch/riscv/include/arch/memlayout.h b/src/arch/riscv/include/arch/memlayout.h
index 3a9b46507c..afe72ec775 100644
--- a/src/arch/riscv/include/arch/memlayout.h
+++ b/src/arch/riscv/include/arch/memlayout.h
@@ -28,4 +28,3 @@
/* TODO: Need to add DMA_COHERENT region like on ARM? */
#endif /* __ARCH_MEMLAYOUT_H */
-
diff --git a/src/arch/riscv/prologue.inc b/src/arch/riscv/prologue.inc
index 995ec4631b..517a2854c7 100644
--- a/src/arch/riscv/prologue.inc
+++ b/src/arch/riscv/prologue.inc
@@ -19,4 +19,3 @@
.section ".rom.data", "a", @progbits
.section ".rom.text", "ax", @progbits
-
diff --git a/src/arch/x86/boot/wakeup.S b/src/arch/x86/boot/wakeup.S
index 3fe521ccba..a614b55f03 100644
--- a/src/arch/x86/boot/wakeup.S
+++ b/src/arch/x86/boot/wakeup.S
@@ -92,4 +92,3 @@ __wakeup_segment = RELOCATED(.)
.globl __wakeup_size
__wakeup_size:
.long . - __wakeup
-
diff --git a/src/arch/x86/init/crt0_romcc_epilogue.inc b/src/arch/x86/init/crt0_romcc_epilogue.inc
index 791ab8e36a..ff93adbc70 100644
--- a/src/arch/x86/init/crt0_romcc_epilogue.inc
+++ b/src/arch/x86/init/crt0_romcc_epilogue.inc
@@ -19,4 +19,3 @@ __main:
post_code(POST_DEAD_CODE)
hlt
jmp .Lhlt
-
diff --git a/src/arch/x86/init/prologue.inc b/src/arch/x86/init/prologue.inc
index e6645bad21..e0100b5127 100644
--- a/src/arch/x86/init/prologue.inc
+++ b/src/arch/x86/init/prologue.inc
@@ -21,4 +21,3 @@
.section ".rom.data", "a", @progbits
.section ".rom.text", "ax", @progbits
-
diff --git a/src/arch/x86/lib/timestamp.c b/src/arch/x86/lib/timestamp.c
index ae5336c6b7..9df505a570 100644
--- a/src/arch/x86/lib/timestamp.c
+++ b/src/arch/x86/lib/timestamp.c
@@ -24,4 +24,3 @@ uint64_t timestamp_get(void)
{
return rdtscll();
}
-