diff options
Diffstat (limited to 'board/bmw/m48t59y.c')
-rw-r--r-- | board/bmw/m48t59y.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/bmw/m48t59y.c b/board/bmw/m48t59y.c index d72c861a13d..a1a85d0fc9f 100644 --- a/board/bmw/m48t59y.c +++ b/board/bmw/m48t59y.c @@ -278,7 +278,7 @@ void m48_watchdog_arm(int usec) /* * U-Boot RTC support. */ -void +int rtc_get( struct rtc_time *tmp ) { m48_tod_get(&tmp->tm_year, @@ -295,6 +295,8 @@ rtc_get( struct rtc_time *tmp ) tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday, tmp->tm_hour, tmp->tm_min, tmp->tm_sec ); #endif + + return 0; } void |