acpi: Add IORT helper functions
[coreboot2.git] / util / vgabios / include / arch / byteorder.h
blob349e28b244dfa41e1a94c1d69f3821f4e98374f4
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef _BYTEORDER_H
4 #define _BYTEORDER_H
6 #define __LITTLE_ENDIAN 1234
8 #define cpu_to_le16(x) ((uint16_t)(x))
9 #define cpu_to_le32(x) ((uint32_t)(x))
11 #endif /* _BYTEORDER_H */