diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-12-07 16:55:12 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-12-08 06:46:14 +0100 |
commit | 91f1423cac0460ab79492a9c167765359b9dd3e2 (patch) | |
tree | 08d04c715a1d53563138eed391f022eeaa1b4323 /src/device/oprom/include | |
parent | 4c4dd93be7fc7d7ae0d5802fe15f8e5e533a6872 (diff) | |
download | coreboot-91f1423cac0460ab79492a9c167765359b9dd3e2.tar.xz |
Fix Yabel compilation on non-x86 platforms
Mostly preventing inb/outb being used on non-x86
Change-Id: I0434df4ce477c262337672867dc6ce398ff95279
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2002
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/device/oprom/include')
-rw-r--r-- | src/device/oprom/include/io.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/device/oprom/include/io.h b/src/device/oprom/include/io.h new file mode 100644 index 0000000000..d9b2139b7e --- /dev/null +++ b/src/device/oprom/include/io.h @@ -0,0 +1,9 @@ +void outb(u8 val, u16 port); +void outw(u16 val, u16 port); +void outl(u32 val, u16 port); + +u8 inb(u16 port); +u16 inw(u16 port); +u32 inl(u16 port); + + |