mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 18:11:05 +00:00
BUG=chrome-os-partner:24558 BRANCH=none TEST=see procedure in bug Change-Id: I42614a1da5f24c93b6267d81339ff9d721bf0d8f Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/180080 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
21 lines
564 B
C
21 lines
564 B
C
/* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
/* Power button API for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_AP_HANG_DETECT_H
|
|
#define __CROS_EC_AP_HANG_DETECT_H
|
|
|
|
#include "common.h"
|
|
|
|
/**
|
|
* If the hang detect timers were started and can be stopped by any host
|
|
* command, stop them. This is intended to be called by the the host command
|
|
* module.
|
|
*/
|
|
void hang_detect_stop_on_host_command(void);
|
|
|
|
#endif /* __CROS_EC_AP_HANG_DETECT_H */
|