stdint.h for linuxbios. This avoids the cross-compile issue pointed out

by seegher. Also, it is readable. 
Add arch/stdint.h to mainboard.c
signed-off-by: Ronald G. Minnich


git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@27 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Ronald G. Minnich 2006-10-19 15:33:35 +00:00
parent 42632e366f
commit 2ee00754ea
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
/* data types */
typedef unsigned long u32;
typedef unsigned short u16;
typedef unsigned char u8;

View file

@ -19,6 +19,7 @@
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
#include <arch/stdint.h>
#include "dtc.h"
struct chip_operations mainboard_emulation_qemu_i386_ops = {