From 23888526c7c979a40218bb8bc669fb383d86c5c3 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Sat, 27 Jun 2015 15:26:13 +0100 Subject: docs: Add documentation for igt_assert_cmpuint() Signed-off-by: Damien Lespiau --- lib/igt_core.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/igt_core.h') diff --git a/lib/igt_core.h b/lib/igt_core.h index f5c7194e..583a7611 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -346,6 +346,15 @@ void igt_exit(void) __attribute__((noreturn)); "error: %d " #ncmp " %d\n", __n1, __n2); \ } while (0) +/** + * igt_assert_cmpuint: + * @n1: first value + * @cmp: compare operator + * @ncmp: negated version of @cmp + * @n2: second value + * + * Like igt_assert_cmpint(), but for unsigned ints; + */ #define igt_assert_cmpuint(n1, cmp, ncmp, n2) \ do { \ uint32_t __n1 = (n1), __n2 = (n2); \ -- cgit v1.2.3