mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +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>
22 lines
599 B
C
22 lines
599 B
C
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
/* Temperature sensor module for LM4 chip */
|
|
|
|
#ifndef __CROS_EC_CHIP_TEMP_SENSOR_H
|
|
#define __CROS_EC_CHIP_TEMP_SENSOR_H
|
|
|
|
/**
|
|
* Get the last polled value of the sensor.
|
|
*
|
|
* @param idx Sensor index to read.
|
|
* @param temp_ptr Destination for temperature in K.
|
|
*
|
|
* @return EC_SUCCESS if successful, non-zero if error.
|
|
*/
|
|
int chip_temp_sensor_get_val(int idx, int *temp_ptr);
|
|
|
|
#endif /* __CROS_EC_CHIP_TEMP_SENSOR_H */
|