forked from Minki/linux
f8eafb5f1a
The marvel_get_rtc_time and marvel_set_rtc_time are static, but they're available through Marvel's machine vector. Reported-by: Raúl Porcel <armin76@gentoo.org> Signed-off-by: Matt Turner <mattst88@gmail.com>
13 lines
270 B
C
13 lines
270 B
C
#ifndef _ALPHA_RTC_H
|
|
#define _ALPHA_RTC_H
|
|
|
|
#if defined(CONFIG_ALPHA_MARVEL) && defined(CONFIG_SMP) \
|
|
|| defined(CONFIG_ALPHA_GENERIC)
|
|
# define get_rtc_time alpha_mv.rtc_get_time
|
|
# define set_rtc_time alpha_mv.rtc_set_time
|
|
#endif
|
|
|
|
#include <asm-generic/rtc.h>
|
|
|
|
#endif
|