summaryrefslogtreecommitdiff
path: root/cts/gpio/dut.c
diff options
context:
space:
mode:
Diffstat (limited to 'cts/gpio/dut.c')
-rw-r--r--cts/gpio/dut.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cts/gpio/dut.c b/cts/gpio/dut.c
index 7ed613911c..92ae893a48 100644
--- a/cts/gpio/dut.c
+++ b/cts/gpio/dut.c
@@ -1,4 +1,4 @@
-/* Copyright 2016 The Chromium OS Authors. All rights reserved.
+/* Copyright 2016 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -21,7 +21,7 @@ enum cts_rc set_high_test(void)
{
gpio_set_flags(GPIO_OUTPUT_TEST, GPIO_ODR_LOW);
gpio_set_level(GPIO_OUTPUT_TEST, 1);
- msleep(READ_WAIT_TIME_MS*2);
+ msleep(READ_WAIT_TIME_MS * 2);
return CTS_RC_SUCCESS;
}
@@ -29,7 +29,7 @@ enum cts_rc set_low_test(void)
{
gpio_set_flags(GPIO_OUTPUT_TEST, GPIO_ODR_LOW);
gpio_set_level(GPIO_OUTPUT_TEST, 0);
- msleep(READ_WAIT_TIME_MS*2);
+ msleep(READ_WAIT_TIME_MS * 2);
return CTS_RC_SUCCESS;
}