From 98afd9b75b92c96c67bb02a0ec104c42c28aaade Mon Sep 17 00:00:00 2001 From: Jens Rottmann Date: Mon, 3 Nov 2008 23:16:00 +0000 Subject: Fix compile errors if CONFIG_FS_PAYLOAD=1: Compile error in filo.c if AUTOBOOT_DELAY=0. Replace #ifndef AUTOBOOT_DELAY with #if !AUTOBOOT_DELAY which should work for both the #undef and the =0 case. In ext2fs.c, fat.c #if ARCH == 'i386' results in a compile warning: "multi-character character constant" and the condition ARCH == 'i386' is mis-evaluated as FALSE, eventually choking the assembler on a PPC instruction. Change it to #ifdef __i386 Signed-off-by: Jens Rottmann Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3729 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/stream/fs/ext2fs.c | 2 +- src/stream/fs/fat.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stream') diff --git a/src/stream/fs/ext2fs.c b/src/stream/fs/ext2fs.c index f29fd8aeb1..9cf0bc6500 100644 --- a/src/stream/fs/ext2fs.c +++ b/src/stream/fs/ext2fs.c @@ -239,7 +239,7 @@ struct ext2_dir_entry * ffz = Find First Zero in word. Undefined if no zero exists, * so code should check against ~0UL first.. */ -#if ARCH == 'i386' +#ifdef __i386 static __inline__ unsigned long ffz (unsigned long word) { diff --git a/src/stream/fs/fat.c b/src/stream/fs/fat.c index 540cac370e..01e4e03cc2 100644 --- a/src/stream/fs/fat.c +++ b/src/stream/fs/fat.c @@ -54,7 +54,7 @@ struct fat_superblock #define FAT_CACHE_SIZE 2048 -#if ARCH == 'i386' +#ifdef __i386 static __inline__ unsigned long log2 (unsigned long word) { -- cgit v1.2.3