diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-11-12 16:38:03 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-11-12 16:38:03 +0000 |
commit | 2e6727362410294ad39116a3d84d99746565ce05 (patch) | |
tree | fbe6a12f3fbbd5a2fc08a7c18df4e45faf356700 /src/arch/i386/boot | |
parent | f9a72600a9fc4b6ed9aeebb7641c9209861c6548 (diff) | |
download | coreboot-2e6727362410294ad39116a3d84d99746565ce05.tar.xz |
Add CONFIG_WARNINGS_ARE_ERRORS and set it for qemu.
Remove all remaining warnings from qemu.
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4939 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/boot')
-rw-r--r-- | src/arch/i386/boot/coreboot_table.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/i386/boot/coreboot_table.c b/src/arch/i386/boot/coreboot_table.c index 49fef60cdd..00c34b2ee8 100644 --- a/src/arch/i386/boot/coreboot_table.c +++ b/src/arch/i386/boot/coreboot_table.c @@ -65,11 +65,13 @@ static struct lb_record *lb_last_record(struct lb_header *header) return rec; } +#if 0 static struct lb_record *lb_next_record(struct lb_record *rec) { rec = (void *)(((char *)rec) + rec->size); return rec; } +#endif static struct lb_record *lb_new_record(struct lb_header *header) { @@ -218,6 +220,7 @@ static void lb_strings(struct lb_header *header) } +#if CONFIG_WRITE_HIGH_TABLES == 1 static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header) { struct lb_record *rec; @@ -229,6 +232,7 @@ static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header forward->forward = (uint64_t)(unsigned long)next_header; return forward; } +#endif void lb_memory_range(struct lb_memory *mem, uint32_t type, uint64_t start, uint64_t size) |