summaryrefslogtreecommitdiff
path: root/board/kingoftown/hibernate.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/kingoftown/hibernate.c')
-rw-r--r--board/kingoftown/hibernate.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/board/kingoftown/hibernate.c b/board/kingoftown/hibernate.c
index 504a295463..9b64e85053 100644
--- a/board/kingoftown/hibernate.c
+++ b/board/kingoftown/hibernate.c
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -11,8 +11,6 @@ void board_hibernate(void)
* Sensors are unpowered in hibernate. Apply PD to the
* interrupt lines such that they don't float.
*/
- gpio_set_flags(GPIO_ACCEL_GYRO_INT_L,
- GPIO_INPUT | GPIO_PULL_DOWN);
- gpio_set_flags(GPIO_LID_ACCEL_INT_L,
- GPIO_INPUT | GPIO_PULL_DOWN);
+ gpio_set_flags(GPIO_ACCEL_GYRO_INT_L, GPIO_INPUT | GPIO_PULL_DOWN);
+ gpio_set_flags(GPIO_LID_ACCEL_INT_L, GPIO_INPUT | GPIO_PULL_DOWN);
}