Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 17a1b5e3 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: coreb: switched to unlocked_ioctl



We don't need the BKL and now people will stop looking at this.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent d2e015d6
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;

@@ -50,7 +50,7 @@ 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,
	.unlocked_ioctl = coreb_ioctl,
};

static struct miscdevice coreb_dev = {