aboutsummaryrefslogtreecommitdiffstats
path: root/src/byteorder.h
Commit message (Collapse)AuthorAgeFilesLines
* Move fw/acpi.h to std/acpi.h.Kevin O'Connor2013-09-181-0/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* Fix return type of le64_to_cpu() and be64_to_cpu()David Woodhouse2013-02-231-2/+2
| | | | Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
* Fix 'union u64_u32_u' member names.Kevin O'Connor2012-09-151-1/+1
| | | | | | | Use 'lo' to mean the low bits and 'hi' to mean the high bits of a 64bit value. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* Use cpu_to_be32() (and related) instead of htonl (and related).Kevin O'Connor2012-09-021-0/+69
Unify the syntax for byte swab calls. This also fixes a bug in coreboot due to the lack of a be64_to_cpu() call. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>