Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc6 16 lines 371 B view raw
1#ifndef _ALPHA_RTC_H 2#define _ALPHA_RTC_H 3 4#if defined(CONFIG_ALPHA_GENERIC) 5# define get_rtc_time alpha_mv.rtc_get_time 6# define set_rtc_time alpha_mv.rtc_set_time 7#else 8# if defined(CONFIG_ALPHA_MARVEL) && defined(CONFIG_SMP) 9# define get_rtc_time marvel_get_rtc_time 10# define set_rtc_time marvel_set_rtc_time 11# endif 12#endif 13 14#include <asm-generic/rtc.h> 15 16#endif