From: Alan Cox Date: Mon, 9 Apr 2018 20:37:22 +0000 (+0100) Subject: ds1302: move to platform_rtc_ naming X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8239ef4a23472d256dd9488d73b952e855c8dd75;p=FUZIX.git ds1302: move to platform_rtc_ naming --- diff --git a/Kernel/dev/ds1302.c b/Kernel/dev/ds1302.c index b4009872..35c18135 100644 --- a/Kernel/dev/ds1302.c +++ b/Kernel/dev/ds1302.c @@ -77,7 +77,7 @@ void ds1302_read_clock(uint8_t *buffer, uint8_t length) } /* define CONFIG_RTC in platform's config.h to hook this into timer.c */ -uint8_t rtc_secs(void) +uint8_t platform_rtc_secs(void) { uint8_t buffer; ds1302_read_clock(&buffer, 1); /* read out only the seconds value */