blob: 7d0091095f4df4050074ece1c38eaf8c9f55550a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef LIBFDT_ENV_H
/* take over libfdt */
#define LIBFDT_ENV_H
/**
* @file libfdt_env.h
* Set up apos environment for libfdt.
*/
#include <apos/types.h>
#include <apos/string.h>
#include <apos/bits.h>
typedef int16_t fdt16_t;
typedef int32_t fdt32_t;
typedef int64_t fdt64_t;
#define fdt32_to_cpu(x) be32_to_cpu(x)
#define cpu_to_fdt32(x) cpu_to_be32(x)
#define fdt64_to_cpu(x) be64_to_cpu(x)
#define cpu_to_fdt64(x) cpu_to_be64(x)
#endif /* LIBFDT_ENV_H */
|