[RFC v2 4/5] drm: fixed: Add dfixed_frac
Thierry Reding
thierry.reding at avionic-design.de
Wed Apr 25 02:45:01 PDT 2012
From: Robert Morell <rmorell at nvidia.com>
This helper macro retrieves the fractional part of a fixed20_12 20.12
fixed-point number.
Signed-off-by: Robert Morell <rmorell at nvidia.com>
Signed-off-by: Olof Johansson <olofj at chromium.org>
Signed-off-by: Thierry Reding <thierry.reding at avionic-design.de>
---
include/drm/drm_fixed.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/drm/drm_fixed.h b/include/drm/drm_fixed.h
index 4a08a66..0ead502 100644
--- a/include/drm/drm_fixed.h
+++ b/include/drm/drm_fixed.h
@@ -37,6 +37,7 @@ typedef union dfixed {
#define dfixed_init(A) { .full = dfixed_const((A)) }
#define dfixed_init_half(A) { .full = dfixed_const_half((A)) }
#define dfixed_trunc(A) ((A).full >> 12)
+#define dfixed_frac(A) ((A).full & ((1 << 12) - 1))
static inline u32 dfixed_floor(fixed20_12 A)
{
--
1.7.10
More information about the dri-devel
mailing list