summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2015-12-18 19:25:47 +0200
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-12-21 16:54:44 +0100
commit23aa051369c2b930d35359a5c06fae5290c06291 (patch)
treea7215f42b8613b4be5f892b758b0ea5254ae6936
parent793aff199f21cdb4136e39f227ced5553eec04dc (diff)
lib: Use igt_assert_eq() to check for crc component count
It's nice to see just how many components the crc claims to have when the count don't match what we expect. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--lib/igt_debugfs.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 4322e8ee..a3d01526 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -280,11 +280,10 @@ char *igt_crc_to_string(igt_crc_t *crc)
{
char buf[128];
- if (crc->n_words == 5)
- sprintf(buf, "%08x %08x %08x %08x %08x", crc->crc[0],
- crc->crc[1], crc->crc[2], crc->crc[3], crc->crc[4]);
- else
- igt_assert(0);
+ igt_assert_eq(crc->n_words, 5);
+
+ sprintf(buf, "%08x %08x %08x %08x %08x", crc->crc[0],
+ crc->crc[1], crc->crc[2], crc->crc[3], crc->crc[4]);
return strdup(buf);
}