diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 22:54:44 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 5a7545ca4acc1213d96af7ce32a707df89940f11 (patch) | |
tree | 25877b455b2fd12e631e03a422bc791c8e0bc7e1 /src/byteorder.h | |
parent | 3d0dfe1faedf1c026954cbf3b69bd8049cb75cab (diff) | |
download | seabios-5a7545ca4acc1213d96af7ce32a707df89940f11.tar.gz |
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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/byteorder.h b/src/byteorder.h index 7362aeb7..928c1b80 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); } |