Fix some more warnings

git-svn-id: svn://coreboot.org/openbios/openbios-devel@275 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2008-11-30 13:42:11 +00:00
parent bf0c6b1c38
commit d4eec07d55
3 changed files with 9 additions and 4 deletions

View File

@@ -127,17 +127,19 @@ enum machine_type {
#define SEGMENT_SIZE PAGE_SIZE
#endif
#if !defined(SEGMENT_SIZE)
#ifdef linux
#if defined(__i386__) || defined(__mc68000__)
#define SEGMENT_SIZE 1024
#elif defined(__sparc__)
#define SEGMENT_SIZE 4096
#define SEGMENT_SIZE 0x2000
#else
#ifndef SEGMENT_SIZE
#if defined(PAGE_SIZE)
#define SEGMENT_SIZE PAGE_SIZE
#endif
#endif
#endif
#endif
#define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE - 1) & ~(SEGMENT_SIZE - 1))