Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-sparc64 / rtc.h
blobcb17334595c9fa13246b4a61b1d56cfd8955be4f
1 /* $Id: rtc.h,v 1.1 1996/12/26 14:22:35 davem Exp $
3 * rtc.h: Definitions for access to the Mostek real time clock
5 * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
6 */
8 #ifndef _RTC_H
9 #define _RTC_H
11 #include <linux/ioctl.h>
13 struct rtc_time
15 int sec; /* Seconds (0-59) */
16 int min; /* Minutes (0-59) */
17 int hour; /* Hour (0-23) */
18 int dow; /* Day of the week (1-7) */
19 int dom; /* Day of the month (1-31) */
20 int month; /* Month of year (1-12) */
21 int year; /* Year (0-99) */
24 #define RTCGET _IOR('p', 20, struct rtc_time)
25 #define RTCSET _IOW('p', 21, struct rtc_time)
27 #endif