blob: d37ae68dc6a3d05cae4d5f3c9558b00a798da159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2004 by Ralf Baechle
*
* RTC routines for PC style attached Dallas chip with ARC epoch.
*/
#ifndef __ASM_MACH_RM200_MC146818RTC_H
#define __ASM_MACH_RM200_MC146818RTC_H
#define mc146818_decode_year(year) ((year) + 1980)
#include_next <mc146818rtc.h>
#endif /* __ASM_MACH_RM200_MC146818RTC_H */
|