https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 4ef24c382f217c2c19202c27e3eca56c2bd34a62 authored by Jason Self on 22 October 2009, 22:58:36 UTC
Linux-libre 2.6.31.5-gnu1
Tip revision: 4ef24c3
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