blob: 7cfff22e49869c8ad90eb05abcec1d0c04aec255 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef SUN3X_TIME_H
3#define SUN3X_TIME_H
4
5extern int sun3x_hwclk(int set, struct rtc_time *t);
Arnd Bergmannf9a01532020-09-24 17:29:17 +02006void sun3x_sched_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8struct mostek_dt {
9 volatile unsigned char csr;
10 volatile unsigned char sec;
11 volatile unsigned char min;
12 volatile unsigned char hour;
13 volatile unsigned char wday;
14 volatile unsigned char mday;
15 volatile unsigned char month;
16 volatile unsigned char year;
17};
18
19#endif