From 2d9798ac3d3dc8e9f3049748419c4ea179138531 Mon Sep 17 00:00:00 2001 From: armink Date: Thu, 3 May 2018 15:45:36 +0800 Subject: [PATCH] [Components/libc] Fix time.c code style in armlibc and dlib. --- components/libc/compilers/armlibc/time.c | 32 +++++++++++++----------- components/libc/compilers/dlib/time.c | 32 +++++++++++++----------- 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/components/libc/compilers/armlibc/time.c b/components/libc/compilers/armlibc/time.c index 701b57fb2..acd69f57c 100644 --- a/components/libc/compilers/armlibc/time.c +++ b/components/libc/compilers/armlibc/time.c @@ -1,23 +1,25 @@ #include +#include +#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC) int gettimeofday(struct timeval *tp, void *ignore) { - time_t time; - rt_device_t device; + time_t time; + rt_device_t device; - device = rt_device_find("rtc"); - if (device != RT_NULL) - { - rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time); - if (tp != RT_NULL) - { - tp->tv_sec = time; - tp->tv_usec = 0; - } + device = rt_device_find("rtc"); + if (device != RT_NULL) + { + rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time); + if (tp != RT_NULL) + { + tp->tv_sec = time; + tp->tv_usec = 0; + } - return time; - } + return time; + } - return 0; + return 0; } - +#endif diff --git a/components/libc/compilers/dlib/time.c b/components/libc/compilers/dlib/time.c index 701b57fb2..acd69f57c 100644 --- a/components/libc/compilers/dlib/time.c +++ b/components/libc/compilers/dlib/time.c @@ -1,23 +1,25 @@ #include +#include +#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC) int gettimeofday(struct timeval *tp, void *ignore) { - time_t time; - rt_device_t device; + time_t time; + rt_device_t device; - device = rt_device_find("rtc"); - if (device != RT_NULL) - { - rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time); - if (tp != RT_NULL) - { - tp->tv_sec = time; - tp->tv_usec = 0; - } + device = rt_device_find("rtc"); + if (device != RT_NULL) + { + rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time); + if (tp != RT_NULL) + { + tp->tv_sec = time; + tp->tv_usec = 0; + } - return time; - } + return time; + } - return 0; + return 0; } - +#endif