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>
This commit is contained in:
Elyes HAOUAS
2015-06-06 19:48:25 +02:00
committed by Stefan Reinauer
parent 4ba3b79537
commit 52648623e0
382 changed files with 0 additions and 419 deletions

View File

@@ -104,4 +104,3 @@ exception_handler:
set_vbar:
mcr p15, 0, r0, c12, c0, 0
bx lr

View File

@@ -26,4 +26,3 @@ uint64_t timestamp_get(void)
timer_monotonic_get(&timestamp);
return (uint64_t)timestamp.microseconds;
}

View File

@@ -44,4 +44,3 @@ struct cpu_info *cpu_info(void)
addr -= sizeof(struct cpu_info);
return (void *)addr;
}

View File

@@ -40,4 +40,3 @@ enum {
CLK_216M = 216000000,
CLK_300M = 300000000,
};

View File

@@ -26,4 +26,3 @@ uint64_t timestamp_get(void)
timer_monotonic_get(&timestamp);
return (uint64_t)timestamp.microseconds;
}

View File

@@ -57,4 +57,3 @@ long long __ashldi3(long long u, word_type b)
return w.ll;
}

View File

@@ -50,4 +50,3 @@ struct cpuinfo_riscv {
struct cpu_info *cpu_info(void);
#endif /* __ARCH_CPU_H__ */

View File

@@ -30,4 +30,3 @@ ENTRY(_start)
#else
ENTRY(stage_entry)
#endif

View File

@@ -2,5 +2,3 @@ static inline __attribute__((always_inline)) void hlt(void)
{
while(1);
}

View File

@@ -28,4 +28,3 @@
/* TODO: Need to add DMA_COHERENT region like on ARM? */
#endif /* __ARCH_MEMLAYOUT_H */

View File

@@ -19,4 +19,3 @@
.section ".rom.data", "a", @progbits
.section ".rom.text", "ax", @progbits

View File

@@ -92,4 +92,3 @@ __wakeup_segment = RELOCATED(.)
.globl __wakeup_size
__wakeup_size:
.long . - __wakeup

View File

@@ -19,4 +19,3 @@ __main:
post_code(POST_DEAD_CODE)
hlt
jmp .Lhlt

View File

@@ -21,4 +21,3 @@
.section ".rom.data", "a", @progbits
.section ".rom.text", "ax", @progbits

View File

@@ -24,4 +24,3 @@ uint64_t timestamp_get(void)
{
return rdtscll();
}