From 9729059d2c946685f63253194986cd28cf696da7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 13 Oct 2009 12:50:05 +0000 Subject: [PATCH] --- yaml --- r: 177263 b: refs/heads/master c: 17a1b5e3748f2d890d24c7eb3b1c11de2e0b9a00 h: refs/heads/master i: 177261: 8b5f3766a25ff525117031d56e01e5363c6f2202 177259: 7c5c7eda97933cda51f24ddc49a1c4a29eee2682 177255: 91288f6a439f5465c37421ffa087e3dc0a7faf84 177247: aa66777d80b7e227163983498728681416318029 v: v3 --- [refs] | 2 +- trunk/arch/blackfin/mach-bf561/coreb.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index 5987dee79cc7..97b68df9a2b2 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d2e015d65fc692475b8513259d6afacd2cded8e8 +refs/heads/master: 17a1b5e3748f2d890d24c7eb3b1c11de2e0b9a00 diff --git a/trunk/arch/blackfin/mach-bf561/coreb.c b/trunk/arch/blackfin/mach-bf561/coreb.c index 1e60a92dd602..deb2271d09a3 100644 --- a/trunk/arch/blackfin/mach-bf561/coreb.c +++ b/trunk/arch/blackfin/mach-bf561/coreb.c @@ -22,8 +22,8 @@ #define CMD_COREB_STOP 3 #define CMD_COREB_RESET 4 -static int -coreb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) +static long +coreb_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { int ret = 0; @@ -49,8 +49,8 @@ coreb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned l } static const struct file_operations coreb_fops = { - .owner = THIS_MODULE, - .ioctl = coreb_ioctl, + .owner = THIS_MODULE, + .unlocked_ioctl = coreb_ioctl, }; static struct miscdevice coreb_dev = {