No really, _these_ should be the last occurences of CONFIG_ without

config.h in libpayload - also removed CONFIG_ instance in libpayload
which would have been dangerous.

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3497 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jordan Crouse
2008-08-11 17:10:58 +00:00
parent 5e354b7a43
commit 12e27266c3
5 changed files with 12 additions and 5 deletions

View File

@@ -20,6 +20,7 @@
* 34AA973C D4C4DAA4 F61EEB2B DBAD2731 6534016F
*/
#include <config.h>
#include <libpayload.h>
typedef u8 u_int8_t;
@@ -27,6 +28,14 @@ typedef u32 u_int32_t;
typedef u64 u_int64_t;
typedef unsigned int u_int;
/* Moved from libpayload.h */
#ifdef CONFIG_TARGET_I386
#define BYTE_ORDER LITTLE_ENDIAN
#else
#define BYTE_ORDER BIG_ENDIAN
#endif
#if 0
#include <sys/param.h>
#include <string.h>