https://github.com/torvalds/linux
Raw File
Tip revision: 326ba5010a5429a5a528b268b36a5900d4ab0eba authored by Linus Torvalds on 28 August 2009, 00:59:04 UTC
Linux 2.6.31-rc8
Tip revision: 326ba50
libfdt_env.h
#ifndef _ARCH_POWERPC_BOOT_LIBFDT_ENV_H
#define _ARCH_POWERPC_BOOT_LIBFDT_ENV_H

#include <types.h>
#include <string.h>

typedef u32 uint32_t;
typedef u64 uint64_t;
typedef unsigned long uintptr_t;

#define fdt16_to_cpu(x)		(x)
#define cpu_to_fdt16(x)		(x)
#define fdt32_to_cpu(x)		(x)
#define cpu_to_fdt32(x)		(x)
#define fdt64_to_cpu(x)		(x)
#define cpu_to_fdt64(x)		(x)

#endif /* _ARCH_POWERPC_BOOT_LIBFDT_ENV_H */
back to top