diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-07-07 23:51:09 +1000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-07-08 13:52:34 +0200 |
commit | 7e8d48372b8638fcba78c99b8ce0128bec4eaafc (patch) | |
tree | ac3f0113be86ec043db94b0e2fcbb7d898c72fe5 /src | |
parent | 6beb1fe32512eb73c2e79f2ba7c1256d81fb74c6 (diff) |
arch: Trivial - drop trailing blank lines at EOF
Change-Id: I472f3b70226ea5236ba6fc231f0f257f0f0eed9d
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/6206
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/armv7/include/clocks.h | 1 | ||||
-rw-r--r-- | src/arch/x86/boot/gdt.c | 1 | ||||
-rw-r--r-- | src/arch/x86/include/arch/io.h | 1 | ||||
-rw-r--r-- | src/arch/x86/include/arch/smp/mpspec.h | 1 | ||||
-rw-r--r-- | src/arch/x86/init/bootblock_normal.c | 1 | ||||
-rw-r--r-- | src/arch/x86/init/bootblock_simple.c | 1 | ||||
-rw-r--r-- | src/arch/x86/lib/cpu.c | 1 | ||||
-rw-r--r-- | src/arch/x86/lib/stages.c | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/src/arch/armv7/include/clocks.h b/src/arch/armv7/include/clocks.h index 8f35303fd3..58cf838621 100644 --- a/src/arch/armv7/include/clocks.h +++ b/src/arch/armv7/include/clocks.h @@ -41,4 +41,3 @@ enum { CLK_216M = 216000000, CLK_300M = 300000000, }; - diff --git a/src/arch/x86/boot/gdt.c b/src/arch/x86/boot/gdt.c index 3505da4535..7ebf92ae85 100644 --- a/src/arch/x86/boot/gdt.c +++ b/src/arch/x86/boot/gdt.c @@ -57,4 +57,3 @@ void move_gdt(void) __asm__ __volatile__ ("lgdt %0\n\t" : : "m" (gdtarg)); printk(BIOS_DEBUG, "ok\n"); } - diff --git a/src/arch/x86/include/arch/io.h b/src/arch/x86/include/arch/io.h index ce3574ea70..b6d82f9275 100644 --- a/src/arch/x86/include/arch/io.h +++ b/src/arch/x86/include/arch/io.h @@ -353,4 +353,3 @@ void pnp_set_drq(pnp_devfn_t dev, unsigned index, unsigned drq) #endif /* __SIMPLE_DEVICE__ */ #endif - diff --git a/src/arch/x86/include/arch/smp/mpspec.h b/src/arch/x86/include/arch/smp/mpspec.h index 61709ff5e0..8e74e463d3 100644 --- a/src/arch/x86/include/arch/smp/mpspec.h +++ b/src/arch/x86/include/arch/smp/mpspec.h @@ -294,4 +294,3 @@ void mptable_write_buses(struct mp_config_table *mc, int *max_pci_bus, int *isa_ void *mptable_finalize(struct mp_config_table *mc); #endif - diff --git a/src/arch/x86/init/bootblock_normal.c b/src/arch/x86/init/bootblock_normal.c index f227e8e9dd..218d456ad3 100644 --- a/src/arch/x86/init/bootblock_normal.c +++ b/src/arch/x86/init/bootblock_normal.c @@ -49,4 +49,3 @@ static void main(unsigned long bist) /* duh. we're stuck */ asm volatile ("1:\n\thlt\n\tjmp 1b\n\t"); } - diff --git a/src/arch/x86/init/bootblock_simple.c b/src/arch/x86/init/bootblock_simple.c index 34f55cac35..179595a727 100644 --- a/src/arch/x86/init/bootblock_simple.c +++ b/src/arch/x86/init/bootblock_simple.c @@ -20,4 +20,3 @@ static void main(unsigned long bist) if (entry) call(entry, bist); asm volatile ("1:\n\thlt\n\tjmp 1b\n\t"); } - diff --git a/src/arch/x86/lib/cpu.c b/src/arch/x86/lib/cpu.c index 4a3bd964cd..86b5cb0cd4 100644 --- a/src/arch/x86/lib/cpu.c +++ b/src/arch/x86/lib/cpu.c @@ -293,4 +293,3 @@ void cpu_initialize(unsigned int index) return; } - diff --git a/src/arch/x86/lib/stages.c b/src/arch/x86/lib/stages.c index 2da66d368d..ce678afedf 100644 --- a/src/arch/x86/lib/stages.c +++ b/src/arch/x86/lib/stages.c @@ -23,4 +23,3 @@ static void skip_romstage(void) "jmp __main\n" ); } - |