mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
42632e366f
commit
2ee00754ea
2 changed files with 6 additions and 0 deletions
5
src/include/cpu/generic/i386/arch/stdint.h
Normal file
5
src/include/cpu/generic/i386/arch/stdint.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* data types */
|
||||
typedef unsigned long u32;
|
||||
typedef unsigned short u16;
|
||||
typedef unsigned char u8;
|
||||
|
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue