diff options
author | Diana Z <dzigterman@chromium.org> | 2021-12-13 17:01:11 -0700 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-12-16 17:56:12 +0000 |
commit | ae9ed126ac94477b25fc096d8b90777277e3c82a (patch) | |
tree | a137727ffd339d95b7f62a62f35d0411223d1449 | |
parent | 95e6e6d046a1d085715f5547f2e0df428b90fa29 (diff) | |
download | chrome-ec-ae9ed126ac94477b25fc096d8b90777277e3c82a.tar.gz |
TMP112: Prepare for zephyr use
Move the header for the TMP112 sensor to the include directory so it's
available for zephyr consumption. Include the shim's temp_sensor.h file
which will now create our sensor enum.
BRANCH=None
BUG=b:195137794
TEST=zmake testall
Signed-off-by: Diana Z <dzigterman@chromium.org>
Change-Id: Id665168ca84fed12020b475649574ff1acd0a1b3
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3340219
Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
-rw-r--r-- | driver/temp_sensor/tmp112.c | 6 | ||||
-rw-r--r-- | include/driver/temp_sensor/tmp112.h (renamed from driver/temp_sensor/tmp112.h) | 0 |
2 files changed, 5 insertions, 1 deletions
diff --git a/driver/temp_sensor/tmp112.c b/driver/temp_sensor/tmp112.c index 4da5c4e0e8..6e726a27b9 100644 --- a/driver/temp_sensor/tmp112.c +++ b/driver/temp_sensor/tmp112.c @@ -7,12 +7,16 @@ #include "common.h" #include "console.h" -#include "tmp112.h" #include "i2c.h" #include "hooks.h" #include "math_util.h" +#include "temp_sensor/tmp112.h" #include "util.h" +#ifdef CONFIG_ZEPHYR +#include "temp_sensor/temp_sensor.h" +#endif + #define TMP112_RESOLUTION 12 #define TMP112_SHIFT1 (16 - TMP112_RESOLUTION) #define TMP112_SHIFT2 (TMP112_RESOLUTION - 8) diff --git a/driver/temp_sensor/tmp112.h b/include/driver/temp_sensor/tmp112.h index d1b97b138c..d1b97b138c 100644 --- a/driver/temp_sensor/tmp112.h +++ b/include/driver/temp_sensor/tmp112.h |