summaryrefslogtreecommitdiff
path: root/lib/drmtest.c
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2015-01-13 13:33:57 +0000
committerThomas Wood <thomas.wood@intel.com>2015-01-15 12:23:04 +0000
commit032f30cb38bb03562ee7fde19cd278b1d8ac31a9 (patch)
treeea6fea5eff9583a072c2f8174c00f57ab5cf1881 /lib/drmtest.c
parent07e9f3edb9dd8e99c2511b6b8c4cf750a5dbe536 (diff)
lib: remove unnecessary checks on the drm_open_any return value
drm_open_any always returns a valid file descriptor, so there is no need to check the return value. Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'lib/drmtest.c')
-rw-r--r--lib/drmtest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 813c315b..133a1537 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -302,10 +302,10 @@ static void quiescent_gpu_at_exit_render(int sig)
/**
* drm_open_any:
*
- * Open an i915 drm legacy device node.
+ * Open an i915 drm legacy device node. This function always returns a valid
+ * file descriptor.
*
- * Returns:
- * The i915 drm file descriptor or -1 on error
+ * Returns: a i915 drm file descriptor
*/
int drm_open_any(void)
{