Deleted Added
sdiff udiff text old ( 256281 ) new ( 262861 )
full compact
1/**
2 * \file drm_os_freebsd.h
3 * OS abstraction macros.
4 */
5
6#include <sys/cdefs.h>
7__FBSDID("$FreeBSD: stable/10/sys/dev/drm2/drm_os_freebsd.h 254858 2013-08-25 14:27:14Z dumbbell $");
8
9#if _BYTE_ORDER == _BIG_ENDIAN
10#define __BIG_ENDIAN 4321
11#else
12#define __LITTLE_ENDIAN 1234
13#endif
14
15#define cpu_to_le16(x) htole16(x)
16#define le16_to_cpu(x) le16toh(x)

--- 128 unchanged lines hidden ---