aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdchar.c
diff options
context:
space:
mode:
authorKevin Cernekee <kpc.mtd@gmail.com>2009-04-15 00:59:22 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2009-05-29 10:58:25 -0400
commit668ff9ab45d595222d3f90d7974ccba3518e3bb3 (patch)
treec1d645633f460276b1e7d43a897852b2fab3c509 /drivers/mtd/mtdchar.c
parentaea7cea9fa9e39e71f95ad70b3daf98ba9972587 (diff)
mtd: Handle compat ioctls directly; remove all trace from compat_ioctl.c
Remove all references to MTD ioctls from fs/compat_ioctl.c and let them all be handled by mtd_compat_ioctl(). Signed-off-by: Kevin Cernekee <kpc.mtd@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdchar.c')
-rw-r--r--drivers/mtd/mtdchar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index 99d1fbc95011..5fff04f3303d 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -836,6 +836,7 @@ struct mtd_oob_buf32 {
836static long mtd_compat_ioctl(struct file *file, unsigned int cmd, 836static long mtd_compat_ioctl(struct file *file, unsigned int cmd,
837 unsigned long arg) 837 unsigned long arg)
838{ 838{
839 struct inode *inode = file->f_path.dentry->d_inode;
839 struct mtd_file_info *mfi = file->private_data; 840 struct mtd_file_info *mfi = file->private_data;
840 struct mtd_info *mtd = mfi->mtd; 841 struct mtd_info *mtd = mfi->mtd;
841 void __user *argp = (void __user *)arg; 842 void __user *argp = (void __user *)arg;
@@ -873,7 +874,7 @@ static long mtd_compat_ioctl(struct file *file, unsigned int cmd,
873 break; 874 break;
874 } 875 }
875 default: 876 default:
876 ret = -ENOIOCTLCMD; 877 ret = mtd_ioctl(inode, file, cmd, arg);
877 } 878 }
878 879
879 unlock_kernel(); 880 unlock_kernel();