xref: /OK3568_Linux_fs/kernel/fs/jffs2/ioctl.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * JFFS2 -- Journalling Flash File System, Version 2.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Copyright © 2001-2007 Red Hat, Inc.
5*4882a593Smuzhiyun  * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * Created by David Woodhouse <dwmw2@infradead.org>
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * For licensing information, see the file 'LICENCE' in this directory.
10*4882a593Smuzhiyun  *
11*4882a593Smuzhiyun  */
12*4882a593Smuzhiyun 
13*4882a593Smuzhiyun #include <linux/fs.h>
14*4882a593Smuzhiyun #include "nodelist.h"
15*4882a593Smuzhiyun 
jffs2_ioctl(struct file * filp,unsigned int cmd,unsigned long arg)16*4882a593Smuzhiyun long jffs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
17*4882a593Smuzhiyun {
18*4882a593Smuzhiyun 	/* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
19*4882a593Smuzhiyun 	   will include compression support etc. */
20*4882a593Smuzhiyun 	return -ENOTTY;
21*4882a593Smuzhiyun }
22*4882a593Smuzhiyun 
23