/* Copyright 2021 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "gpio.h" #include "system.h" void board_hibernate_late(void) { /* Set the hibernate GPIO to turn off the rails */ gpio_set_level(GPIO_HIBERNATE_L, 0); }