thermal: rename device_thermal_e to hal_device_thermal_e 50/262050/1 accepted/tizen/unified/20210804.085740 submit/tizen/20210802.064402
authorYoungjae Cho <y0.cho@samsung.com>
Mon, 2 Aug 2021 05:34:20 +0000 (14:34 +0900)
committerYoungjae Cho <y0.cho@samsung.com>
Mon, 2 Aug 2021 05:34:20 +0000 (14:34 +0900)
Change-Id: I57433638117491dfe64d4a2078ccc486697ebec8
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
hw/thermal/thermal.c

index 903e7d2426e2c4bbe38e4290cda41f38f3726797..1d9c22b6c8ada9d90727ef07dfa92805a27b1332 100644 (file)
@@ -37,7 +37,7 @@ static struct event_data {
 
 static guint timer;
 
-static int thermal_get_info(device_thermal_e type, struct thermal_info *info)
+static int thermal_get_info(hal_device_thermal_e type, struct thermal_info *info)
 {
        FILE *fp;
        char buf[32];
@@ -72,7 +72,7 @@ static gboolean thermal_timeout(gpointer data)
        struct thermal_info info;
        int ret;
 
-       ret = thermal_get_info(DEVICE_THERMAL_AP, &info);
+       ret = thermal_get_info(HAL_DEVICE_THERMAL_AP, &info);
        if (ret < 0) {
                _E("Failed to read thermal info (%d)", ret);
                return G_SOURCE_CONTINUE;