https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 7ba586a33a1656f8b036964a1e8dc3fef62b30ce authored by Jason Self on 11 January 2013, 17:04:13 UTC
Linux-libre 3.0.58-gnu1
Tip revision: 7ba586a
rtc.h
#ifndef _ALPHA_RTC_H
#define _ALPHA_RTC_H

#if defined(CONFIG_ALPHA_GENERIC)
# define get_rtc_time		alpha_mv.rtc_get_time
# define set_rtc_time		alpha_mv.rtc_set_time
#else
# if defined(CONFIG_ALPHA_MARVEL) && defined(CONFIG_SMP)
#  define get_rtc_time		marvel_get_rtc_time
#  define set_rtc_time		marvel_set_rtc_time
# endif
#endif

#include <asm-generic/rtc.h>

#endif
back to top