aboutsummaryrefslogtreecommitdiff
path: root/src/byteorder.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-14 22:54:44 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-18 20:48:34 -0400
commit5a7545ca4acc1213d96af7ce32a707df89940f11 (patch)
tree25877b455b2fd12e631e03a422bc791c8e0bc7e1 /src/byteorder.h
parent3d0dfe1faedf1c026954cbf3b69bd8049cb75cab (diff)
downloadseabios-hppa-5a7545ca4acc1213d96af7ce32a707df89940f11.zip
seabios-hppa-5a7545ca4acc1213d96af7ce32a707df89940f11.tar.gz
seabios-hppa-5a7545ca4acc1213d96af7ce32a707df89940f11.tar.bz2
Move fw/acpi.h to std/acpi.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/byteorder.h')
-rw-r--r--src/byteorder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/byteorder.h b/src/byteorder.h
index 7362aeb..928c1b8 100644
--- a/src/byteorder.h
+++ b/src/byteorder.h
@@ -1,6 +1,8 @@
#ifndef __BYTEORDER_H
#define __BYTEORDER_H
+#include "types.h" // u32
+
static inline u16 __swab16_constant(u16 val) {
return (val<<8) | (val>>8);
}