forked from Minki/linux
drm: use kernel macros
Make some of the DRM_ macros use the real kernel macros. Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
4e0c1159d8
commit
99a2657a29
@ -228,9 +228,9 @@
|
||||
/** \name Internal types and structures */
|
||||
/*@{*/
|
||||
|
||||
#define DRM_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
|
||||
#define DRM_MIN(a,b) ((a)<(b)?(a):(b))
|
||||
#define DRM_MAX(a,b) ((a)>(b)?(a):(b))
|
||||
#define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
|
||||
#define DRM_MIN(a,b) min(a,b)
|
||||
#define DRM_MAX(a,b) max(a,b)
|
||||
|
||||
#define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
|
||||
#define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
|
||||
|
Loading…
Reference in New Issue
Block a user