summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/mpc5xxx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/rtc/mpc5xxx.c')
-rw-r--r--drivers/rtc/mpc5xxx.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/rtc/mpc5xxx.c b/drivers/rtc/mpc5xxx.c
index 1450649959..6231b9b699 100644
--- a/drivers/rtc/mpc5xxx.c
+++ b/drivers/rtc/mpc5xxx.c
@@ -88,7 +88,7 @@ int rtc_get (struct rtc_time *tmp)
/*****************************************************************************
* set time
*****************************************************************************/
-void rtc_set (struct rtc_time *tmp)
+int rtc_set (struct rtc_time *tmp)
{
RTC5200 *rtc = (RTC5200 *) (CFG_MBAR+0x800);
ulong time, date, year;
@@ -129,6 +129,8 @@ void rtc_set (struct rtc_time *tmp)
udelay (1000);
rtc->tsr = time;
udelay (1000);
+
+ return 0;
}
/*****************************************************************************
OpenPOWER on IntegriCloud