summaryrefslogtreecommitdiff
path: root/cts/common/dut_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'cts/common/dut_common.c')
-rw-r--r--cts/common/dut_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cts/common/dut_common.c b/cts/common/dut_common.c
index 3c8a64b4da..bae4662fbc 100644
--- a/cts/common/dut_common.c
+++ b/cts/common/dut_common.c
@@ -12,7 +12,7 @@
/* Returns unknown because TH could potentially still get stuck
* even if the DUT completes the sync
*/
-enum cts_error_code sync(void)
+enum cts_rc sync(void)
{
int input_level;
@@ -28,5 +28,5 @@ enum cts_error_code sync(void)
} while (input_level);
gpio_set_level(GPIO_HANDSHAKE_OUTPUT, 0);
- return CTS_ERROR_UNKNOWN;
+ return CTS_RC_UNKNOWN;
}