aboutsummaryrefslogtreecommitdiffstats
path: root/package/rtc-rv5c386a
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2010-11-10 19:02:09 +0000
committerHauke Mehrtens <hauke@openwrt.org>2010-11-10 19:02:09 +0000
commit533d918b54d0420f13aa187e196659337cf514f6 (patch)
tree9ecdf98bf4766e20d771851cd09282530cb43ce9 /package/rtc-rv5c386a
parent63820b1ae6004cb028a2ce9252ab6e2a222821e3 (diff)
downloadupstream-533d918b54d0420f13aa187e196659337cf514f6.tar.gz
upstream-533d918b54d0420f13aa187e196659337cf514f6.tar.bz2
upstream-533d918b54d0420f13aa187e196659337cf514f6.zip
rtc-rv5c386a: make driver compile with kernel 2.6.36.
This was only compile tested. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23947 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/rtc-rv5c386a')
-rw-r--r--package/rtc-rv5c386a/src/rtc.c29
1 files changed, 19 insertions, 10 deletions
diff --git a/package/rtc-rv5c386a/src/rtc.c b/package/rtc-rv5c386a/src/rtc.c
index 34d0a83aab..5a018102f8 100644
--- a/package/rtc-rv5c386a/src/rtc.c
+++ b/package/rtc-rv5c386a/src/rtc.c
@@ -52,6 +52,7 @@
#include <linux/rtc.h>
#include <linux/delay.h>
#include <linux/version.h>
+#include <linux/smp_lock.h>
#include <asm/uaccess.h>
#include <asm/system.h>
@@ -461,8 +462,7 @@ static ssize_t rtc_read(UNUSED struct file *filp, char *buf, size_t count,
return len;
}
-static int rtc_ioctl(UNUSED struct inode *inode, UNUSED struct file *filp,
- unsigned int cmd, unsigned long arg)
+static int rtc_do_ioctl(unsigned int cmd, unsigned long arg)
{
struct rtc_time rtc_tm;
@@ -492,14 +492,23 @@ static int rtc_ioctl(UNUSED struct inode *inode, UNUSED struct file *filp,
return 0;
}
-static struct file_operations rtc_fops = {
- .owner = THIS_MODULE,
- .llseek = no_llseek,
- .read = rtc_read,
- .write = rtc_write,
- .ioctl = rtc_ioctl,
- .open = rtc_open,
- .release = rtc_release,
+static long rtc_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
+{
+ long ret;
+ lock_kernel();
+ ret = rtc_do_ioctl(cmd, arg);
+ unlock_kernel();
+ return ret;
+}
+
+static const struct file_operations rtc_fops = {
+ .owner = THIS_MODULE,
+ .llseek = no_llseek,
+ .read = rtc_read,
+ .write = rtc_write,
+ .unlocked_ioctl = rtc_ioctl,
+ .open = rtc_open,
+ .release = rtc_release,
};
static struct miscdevice rtc_dev = {