2007-03-31 15:59:59 +00:00
|
|
|
#ifndef _LIBFDT_ENV_H
|
|
|
|
|
#define _LIBFDT_ENV_H
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
2007-03-31 16:05:39 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
|
#include <linux/string.h>
|
2007-03-31 15:59:59 +00:00
|
|
|
|
2007-03-31 16:05:39 +00:00
|
|
|
struct fdt_header *fdt; /* Pointer to the working fdt */
|
|
|
|
|
|
|
|
|
|
#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)
|
2007-03-31 15:59:59 +00:00
|
|
|
|
|
|
|
|
#endif /* _LIBFDT_ENV_H */
|