repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
acpi: Add IORT helper functions
[coreboot2.git]
/
util
/
vgabios
/
include
/
arch
/
byteorder.h
blob
349e28b244dfa41e1a94c1d69f3821f4e98374f4
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef _BYTEORDER_H
4
#define _BYTEORDER_H
5
6
#define __LITTLE_ENDIAN 1234
7
8
#define cpu_to_le16(x) ((uint16_t)(x))
9
#define cpu_to_le32(x) ((uint32_t)(x))
10
11
#endif
/* _BYTEORDER_H */