symbian-qemu-0.9.1-12/qemu-symbian-svp/libfdt/libfdt_env.h
author Mike Kinghan <mikek@symbian.org>
Mon, 01 Nov 2010 10:36:09 +0000
branchGCC_SURGE
changeset 127 c0501b51f2b9
parent 1 2fb8b9db1c86
permissions -rw-r--r--
Fix for Bug 3898 - [GCCE] Name sf/adapation -> sf/adapt breaks syborg buiild

#ifndef _LIBFDT_ENV_H
#define _LIBFDT_ENV_H

#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include "bswap.h"

#ifdef WORDS_BIGENDIAN
#define fdt32_to_cpu(x)		(x)
#define cpu_to_fdt32(x)		(x)
#define fdt64_to_cpu(x)		(x)
#define cpu_to_fdt64(x)		(x)
#else
#define fdt32_to_cpu(x)		(bswap_32((x)))
#define cpu_to_fdt32(x)		(bswap_32((x)))
#define fdt64_to_cpu(x)		(bswap_64((x)))
#define cpu_to_fdt64(x)		(bswap_64((x)))
#endif

#endif /* _LIBFDT_ENV_H */