From c3f8e1abf04772a359f22ff1609b6a55f6b3ef38 Mon Sep 17 00:00:00 2001 From: Frank Stettner Date: Tue, 6 Mar 2018 16:56:42 +0100 Subject: [PATCH] arachnid-labs-re-load-pro: Replace C++-style comments with C-style comments. --- src/hardware/arachnid-labs-re-load-pro/protocol.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hardware/arachnid-labs-re-load-pro/protocol.c b/src/hardware/arachnid-labs-re-load-pro/protocol.c index 38405157..998ba171 100644 --- a/src/hardware/arachnid-labs-re-load-pro/protocol.c +++ b/src/hardware/arachnid-labs-re-load-pro/protocol.c @@ -171,7 +171,7 @@ SR_PRIV int reloadpro_get_current_limit(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->current_limit_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; } @@ -207,7 +207,7 @@ SR_PRIV int reloadpro_get_under_voltage_threshold(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->uvc_threshold_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; } @@ -244,7 +244,7 @@ SR_PRIV int reloadpro_get_voltage_current(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->voltage_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; }