rtc.h 602 B

123456789101112131415161718192021222324252627
  1. /* $Id: rtc.h,v 1.2 1996/08/21 23:17:39 ecd Exp $
  2. *
  3. * rtc.h: Definitions for access to the Mostek real time clock
  4. *
  5. * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu)
  6. */
  7. #ifndef _RTC_H
  8. #define _RTC_H
  9. #include <linux/ioctl.h>
  10. struct rtc_time
  11. {
  12. int sec; /* Seconds (0-59) */
  13. int min; /* Minutes (0-59) */
  14. int hour; /* Hour (0-23) */
  15. int dow; /* Day of the week (1-7) */
  16. int dom; /* Day of the month (1-31) */
  17. int month; /* Month of year (1-12) */
  18. int year; /* Year (0-99) */
  19. };
  20. #define RTCGET _IOR('p', 20, struct rtc_time)
  21. #define RTCSET _IOW('p', 21, struct rtc_time)
  22. #endif