#include <linux/module.h>
#include <linux/sched.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
#include <linux/fcntl.h>
#include <linux/rtc.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <linux/proc_fs.h>
#include <linux/mutex.h>
#include <linux/workqueue.h>
#include <asm/uaccess.h>
#include <asm/rtc.h>
Go to the source code of this file.
#define RTC_IS_OPEN 0x01 /* means /dev/rtc is in use */ |
#define RTC_VERSION "1.07" |
MODULE_AUTHOR |
( |
"Richard Zidlicky" |
| ) |
|
module_exit |
( |
rtc_generic_exit |
| ) |
|
module_init |
( |
rtc_generic_init |
| ) |
|