mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Device-specific headers belong in driver/ or chip/. The include/ directory should be for common interfaces. Code should not normally need to include driver-specific headers. If it does, it should use the full relative path from the EC project root (for example, drivers/charger/bq24715.h). Change-Id: Id23db37a431e2d802a74ec601db6f69b613352ba Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/173746 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
18 lines
443 B
C
18 lines
443 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.
|
|
*/
|
|
|
|
/* Unit testing for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_HOST_TEST_H
|
|
#define __CROS_EC_HOST_TEST_H
|
|
|
|
/* Emulator exit codes */
|
|
#define EXIT_CODE_HIBERNATE (1 << 7)
|
|
|
|
/* Get emulator executable name */
|
|
const char *__get_prog_name(void);
|
|
|
|
#endif /* __CROS_EC_HOST_TEST_H */
|