1 /*
2  * Copyright (c) 2023 Huawei Device Co., Ltd.
3  *
4  * HDF is dual licensed: you can use it either under the terms of
5  * the GPL, or the BSD license, at your option.
6  * See the LICENSE file in the root of this repository for complete details.
7  */
8 
9 #include "hdf_log.h"
10 #include "rtc_if.h"
11 
RtcSetTimeZone(int32_t timeZone)12 int32_t RtcSetTimeZone(int32_t timeZone)
13 {
14     (void)timeZone;
15     HDF_LOGI("RtcSetTimeZone: success!");
16     return HDF_SUCCESS;
17 }
18 
RtcGetTimeZone(int32_t * timeZone)19 int32_t RtcGetTimeZone(int32_t *timeZone)
20 {
21     (void)timeZone;
22     HDF_LOGI("RtcGetTimeZone: success!");
23     return HDF_SUCCESS;
24 }
25