diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-12-22 09:14:23 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-12-22 09:14:23 +0000 |
commit | 553c13c0f49c2c83259bdbd4e0321a08b2bce38a (patch) | |
tree | 2a2bf43a67584c5bc651c6e5047c86b92686dd36 /os/hal | |
parent | ea082a74c922c22328ab4d140b0eea7b327981f2 (diff) | |
download | ChibiOS-553c13c0f49c2c83259bdbd4e0321a08b2bce38a.tar.gz ChibiOS-553c13c0f49c2c83259bdbd4e0321a08b2bce38a.tar.bz2 ChibiOS-553c13c0f49c2c83259bdbd4e0321a08b2bce38a.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7591 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/src/rtc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/src/rtc.c b/os/hal/src/rtc.c index e0c078ef2..4de3b06fe 100644 --- a/os/hal/src/rtc.c +++ b/os/hal/src/rtc.c @@ -86,6 +86,8 @@ void rtcObjectInit(RTCDriver *rtcp) { #if RTC_HAS_STORAGE
rtcp->vmt = &_rtc_lld_vmt;
+#else
+ (void)rtcp;
#endif
}
|