mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Fix some more warnings
git-svn-id: svn://coreboot.org/openbios/openbios-devel@275 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user