summaryrefslogtreecommitdiff
path: root/lib/igt_aux.c
diff options
context:
space:
mode:
authorJani Nikula <jani.nikula@intel.com>2016-05-17 14:41:23 +0300
committerJani Nikula <jani.nikula@intel.com>2016-05-17 14:41:23 +0300
commit4dc4ebf3ee5445e0888c6a793961b7840a6d5dd8 (patch)
tree926ebfd3efd63788db5ad5398196b49ce583122b /lib/igt_aux.c
parent5cc3175ca5a0374c17bd201ba5a35ef4ff076003 (diff)
lib/igt_kms: move gtk-doc comments next to the definition
Now that we have actual functions for kms_test_*_str since commit 2d432fc5773df17f04283f4780dab161dd2e1c85 Author: Jani Nikula <jani.nikula@intel.com> Date: Wed May 11 12:42:06 2016 +0300 lib/igt_aux: define actual functions for kmstest_*_str move also the gtk-doc comments next to the definitions, for consistency. Acked-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'lib/igt_aux.c')
-rw-r--r--lib/igt_aux.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 6c3eb1f4..27b74aec 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -942,6 +942,12 @@ static const struct type_name encoder_type_names[] = {
{}
};
+/**
+ * kmstest_encoder_type_str:
+ * @type: DRM_MODE_ENCODER_* enumeration value
+ *
+ * Returns: A string representing the drm encoder @type.
+ */
const char *kmstest_encoder_type_str(int type)
{
return find_type_name(encoder_type_names, type);
@@ -954,6 +960,12 @@ static const struct type_name connector_status_names[] = {
{}
};
+/**
+ * kmstest_connector_status_str:
+ * @status: DRM_MODE_* connector status value
+ *
+ * Returns: A string representing the drm connector status @status.
+ */
const char *kmstest_connector_status_str(int status)
{
return find_type_name(connector_status_names, status);
@@ -980,6 +992,12 @@ static const struct type_name connector_type_names[] = {
{}
};
+/**
+ * kmstest_connector_type_str:
+ * @type: DRM_MODE_CONNECTOR_* enumeration value
+ *
+ * Returns: A string representing the drm connector @type.
+ */
const char *kmstest_connector_type_str(int type)
{
return find_type_name(connector_type_names, type);