summaryrefslogtreecommitdiff
path: root/bsd-core
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2004-07-29 13:00:48 +0000
committerDave Airlie <airlied@linux.ie>2004-07-29 13:00:48 +0000
commit1cec18a5cd3bcd37aab71c255d63fd394143bc5e (patch)
treee8d080cd4dcb055059a2a6c8b5d1751d89a9f2c4 /bsd-core
parentb1cf4ca7e540bcf28beaf3f5a70915a810a75b1b (diff)
add read/write 16
Diffstat (limited to 'bsd-core')
-rw-r--r--bsd-core/drm_os_freebsd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/bsd-core/drm_os_freebsd.h b/bsd-core/drm_os_freebsd.h
index 74d13511..7d750dba 100644
--- a/bsd-core/drm_os_freebsd.h
+++ b/bsd-core/drm_os_freebsd.h
@@ -163,8 +163,10 @@ typedef void irqreturn_t;
/* Read/write from bus space, with byteswapping to le if necessary */
#define DRM_READ8(map, offset) *(volatile u_int8_t *) (((unsigned long)(map)->handle) + (offset))
+#define DRM_READ16(map, offset) *(volatile u_int16_t *) (((unsigned long)(map)->handle) + (offset))
#define DRM_READ32(map, offset) *(volatile u_int32_t *)(((unsigned long)(map)->handle) + (offset))
#define DRM_WRITE8(map, offset, val) *(volatile u_int8_t *) (((unsigned long)(map)->handle) + (offset)) = val
+#define DRM_WRITE16(map, offset, val) *(volatile u_int16_t *) (((unsigned long)(map)->handle) + (offset)) = val
#define DRM_WRITE32(map, offset, val) *(volatile u_int32_t *)(((unsigned long)(map)->handle) + (offset)) = val
/*
#define DRM_READ8(map, offset) bus_space_read_1( (map)->iot, (map)->ioh, (offset) )