From: Taeyoung Kim Date: Fri, 1 Apr 2016 00:13:18 +0000 (+0900) Subject: common: apply Tizen Coding Rule X-Git-Tag: accepted/tizen/common/20160426.143444^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F65%2F64365%2F1;p=platform%2Fcore%2Fapi%2Fruntime-info.git common: apply Tizen Coding Rule - Space policy is applied. Change-Id: I68fd8a2f4e85dd1990ac57385e39dbf8a9cc3478 Signed-off-by: Taeyoung Kim --- diff --git a/include/runtime_info_private.h b/include/runtime_info_private.h index 7633286..1f164a9 100644 --- a/include/runtime_info_private.h +++ b/include/runtime_info_private.h @@ -77,7 +77,7 @@ void runtime_info_bt_enabled_unset_event_cb(void); int runtime_info_wifi_hotspot_get_value(runtime_info_value_h); int runtime_info_wifi_hotspot_set_event_cb(void); -void runtime_info_wifi_hotspot_unset_event_cb (void); +void runtime_info_wifi_hotspot_unset_event_cb(void); int runtime_info_bt_hotspot_get_value(runtime_info_value_h); int runtime_info_bt_hotspot_set_event_cb(void); @@ -143,7 +143,7 @@ int runtime_info_tvout_connected_get_value(runtime_info_value_h value); int runtime_info_tvout_connected_set_event_cb(void); void runtime_info_tvout_connected_unset_event_cb(void); -int runtime_info_audio_jack_status_get_value (runtime_info_value_h value); +int runtime_info_audio_jack_status_get_value(runtime_info_value_h value); int runtime_info_audio_jack_status_set_event_cb(void); void runtime_info_audio_jack_status_unset_event_cb(void); diff --git a/src/runtime_info_usage.c b/src/runtime_info_usage.c index 441a3b4..e9b9b73 100644 --- a/src/runtime_info_usage.c +++ b/src/runtime_info_usage.c @@ -401,13 +401,13 @@ API int runtime_info_get_processor_count(int *num_core) } cpuinfo_fp = fopen("/sys/devices/system/cpu/possible", "r"); - if(cpuinfo_fp == NULL) { + if (cpuinfo_fp == NULL) { _E("IO_ERROR(0x%08x) : failed to open file to read cpu information", RUNTIME_INFO_ERROR_IO_ERROR); return RUNTIME_INFO_ERROR_IO_ERROR; } - if(!fscanf(cpuinfo_fp, "%d-%d", &buf, &result)) { + if (!fscanf(cpuinfo_fp, "%d-%d", &buf, &result)) { _E("IO_ERROR(0x%08x) : there is no information in the system file", RUNTIME_INFO_ERROR_IO_ERROR); fclose(cpuinfo_fp); @@ -427,12 +427,12 @@ API int runtime_info_get_processor_current_frequency(int core_idx, int *cpu_freq FILE *cpuinfo_fp; int result; - if(runtime_info_get_processor_count(&num_core)) { + if (runtime_info_get_processor_count(&num_core)) { _E("runtime_info_get_processor_count is failed"); return RUNTIME_INFO_ERROR_IO_ERROR; } - if(core_idx < 0 || core_idx >= num_core) { + if (core_idx < 0 || core_idx >= num_core) { _E("INVALID_PARAMETER(0x%08x) : invalid input parameter", RUNTIME_INFO_ERROR_INVALID_PARAMETER); return RUNTIME_INFO_ERROR_INVALID_PARAMETER; @@ -447,19 +447,19 @@ API int runtime_info_get_processor_current_frequency(int core_idx, int *cpu_freq snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_cur_freq", core_idx); cpuinfo_fp = fopen(path, "r"); - if(cpuinfo_fp == NULL) { + if (cpuinfo_fp == NULL) { _I("Fail to get the information about core%d. Get the core0's instead.", core_idx); cpuinfo_fp = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", "r"); - if(cpuinfo_fp == NULL) { + if (cpuinfo_fp == NULL) { _E("IO_ERROR(0x%08x) : failed to open file to read cpu information", RUNTIME_INFO_ERROR_IO_ERROR); return RUNTIME_INFO_ERROR_IO_ERROR; } } - if(!fscanf(cpuinfo_fp, "%d", &result)) { + if (!fscanf(cpuinfo_fp, "%d", &result)) { _E("IO_ERROR(0x%08x) : there is no information in the system file", RUNTIME_INFO_ERROR_IO_ERROR); fclose(cpuinfo_fp); @@ -479,12 +479,12 @@ API int runtime_info_get_processor_max_frequency(int core_idx, int *cpu_freq) FILE *cpuinfo_fp; int result; - if(runtime_info_get_processor_count(&num_core)) { + if (runtime_info_get_processor_count(&num_core)) { _E("runtime_info_get_processor_count is failed"); return RUNTIME_INFO_ERROR_IO_ERROR; } - if(core_idx < 0 || core_idx >= num_core) { + if (core_idx < 0 || core_idx >= num_core) { _E("INVALID_PARAMETER(0x%08x) : invalid input parameter", RUNTIME_INFO_ERROR_INVALID_PARAMETER); return RUNTIME_INFO_ERROR_INVALID_PARAMETER; @@ -499,19 +499,19 @@ API int runtime_info_get_processor_max_frequency(int core_idx, int *cpu_freq) snprintf(path, sizeof(path), "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_max_freq", core_idx); cpuinfo_fp = fopen(path, "r"); - if(cpuinfo_fp == NULL) { + if (cpuinfo_fp == NULL) { _I("Fail to get the information about core%d. Get the core0's instead.", core_idx); cpuinfo_fp = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq", "r"); - if(cpuinfo_fp == NULL) { + if (cpuinfo_fp == NULL) { _E("IO_ERROR(0x%08x) : failed to open file to read cpu information", RUNTIME_INFO_ERROR_IO_ERROR); return RUNTIME_INFO_ERROR_IO_ERROR; } } - if(!fscanf(cpuinfo_fp, "%d", &result)) { + if (!fscanf(cpuinfo_fp, "%d", &result)) { _E("IO_ERROR(0x%08x) : there is no information in the system file", RUNTIME_INFO_ERROR_IO_ERROR); fclose(cpuinfo_fp);