diff options
author | Eric Anholt <anholt@freebsd.org> | 2003-04-27 00:43:14 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2003-04-27 00:43:14 +0000 |
commit | 22b9b720d572ba6fec288e2a13537aec069cec7f (patch) | |
tree | 23a98811df1f2bf92ad51f8ffe3ef6f54362e4a7 | |
parent | 9828bd24c8f7b9d115acf94e422fa34ec8627b92 (diff) |
Use real endian conversion functions.
-rw-r--r-- | bsd-core/drm_os_freebsd.h | 4 | ||||
-rw-r--r-- | bsd-core/drm_os_netbsd.h | 4 | ||||
-rw-r--r-- | bsd/drm_os_freebsd.h | 4 | ||||
-rw-r--r-- | bsd/drm_os_netbsd.h | 4 |
4 files changed, 12 insertions, 4 deletions
diff --git a/bsd-core/drm_os_freebsd.h b/bsd-core/drm_os_freebsd.h index b9869c9f..52f7aa2a 100644 --- a/bsd-core/drm_os_freebsd.h +++ b/bsd-core/drm_os_freebsd.h @@ -27,6 +27,7 @@ #include <machine/pmap.h> #include <machine/bus.h> #include <machine/resource.h> +#include <sys/endian.h> #include <sys/mman.h> #include <sys/rman.h> #include <sys/memrange.h> @@ -240,7 +241,8 @@ typedef struct drm_chipinfo char *name; } drm_chipinfo_t; -#define cpu_to_le32(x) (x) /* FIXME */ +#define cpu_to_le32(x) htole32(x) +#define le32_to_cpu(x) le32toh(x) typedef unsigned long dma_addr_t; typedef u_int32_t atomic_t; diff --git a/bsd-core/drm_os_netbsd.h b/bsd-core/drm_os_netbsd.h index a0c4f78f..6dfea613 100644 --- a/bsd-core/drm_os_netbsd.h +++ b/bsd-core/drm_os_netbsd.h @@ -20,6 +20,7 @@ #include <sys/lkm.h> /* For TIOCSPGRP/TIOCGPGRP */ #include <sys/ttycom.h> +#include <sys/endian.h> #include <uvm/uvm.h> @@ -202,7 +203,8 @@ typedef struct drm_chipinfo char *name; } drm_chipinfo_t; -#define cpu_to_le32(x) (x) /* FIXME */ +#define cpu_to_le32(x) htole32(x) +#define le32_to_cpu(x) le32toh(x) typedef u_int32_t dma_addr_t; typedef volatile long atomic_t; diff --git a/bsd/drm_os_freebsd.h b/bsd/drm_os_freebsd.h index b9869c9f..52f7aa2a 100644 --- a/bsd/drm_os_freebsd.h +++ b/bsd/drm_os_freebsd.h @@ -27,6 +27,7 @@ #include <machine/pmap.h> #include <machine/bus.h> #include <machine/resource.h> +#include <sys/endian.h> #include <sys/mman.h> #include <sys/rman.h> #include <sys/memrange.h> @@ -240,7 +241,8 @@ typedef struct drm_chipinfo char *name; } drm_chipinfo_t; -#define cpu_to_le32(x) (x) /* FIXME */ +#define cpu_to_le32(x) htole32(x) +#define le32_to_cpu(x) le32toh(x) typedef unsigned long dma_addr_t; typedef u_int32_t atomic_t; diff --git a/bsd/drm_os_netbsd.h b/bsd/drm_os_netbsd.h index a0c4f78f..6dfea613 100644 --- a/bsd/drm_os_netbsd.h +++ b/bsd/drm_os_netbsd.h @@ -20,6 +20,7 @@ #include <sys/lkm.h> /* For TIOCSPGRP/TIOCGPGRP */ #include <sys/ttycom.h> +#include <sys/endian.h> #include <uvm/uvm.h> @@ -202,7 +203,8 @@ typedef struct drm_chipinfo char *name; } drm_chipinfo_t; -#define cpu_to_le32(x) (x) /* FIXME */ +#define cpu_to_le32(x) htole32(x) +#define le32_to_cpu(x) le32toh(x) typedef u_int32_t dma_addr_t; typedef volatile long atomic_t; |