Message ID | CAPgLHd_P7=SeFYvC8EepyNy7Lm-NUTBokTpMDhFVbS_sfhx+UQ@mail.gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Oct 17, 2012 at 04:29:23PM +0800, Wei Yongjun wrote: > From: Wei Yongjun <yongjun_wei@trendmicro.com.cn> > > This removes an open coded simple_open() function and > replaces file operations references to the function > with simple_open() instead. > > dpatch engine is used to auto generate this patch. > (https://github.com/weiyj/dpatch) Applied, thanks Wei. > > Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> > --- > drivers/input/touchscreen/edt-ft5x06.c | 10 +--------- > 1 file changed, 1 insertion(+), 9 deletions(-) > > diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c > index 099d144..d9c6007 100644 > --- a/drivers/input/touchscreen/edt-ft5x06.c > +++ b/drivers/input/touchscreen/edt-ft5x06.c > @@ -491,14 +491,6 @@ static int edt_ft5x06_debugfs_mode_set(void *data, u64 mode) > DEFINE_SIMPLE_ATTRIBUTE(debugfs_mode_fops, edt_ft5x06_debugfs_mode_get, > edt_ft5x06_debugfs_mode_set, "%llu\n"); > > -static int edt_ft5x06_debugfs_raw_data_open(struct inode *inode, > - struct file *file) > -{ > - file->private_data = inode->i_private; > - > - return 0; > -} > - > static ssize_t edt_ft5x06_debugfs_raw_data_read(struct file *file, > char __user *buf, size_t count, loff_t *off) > { > @@ -579,7 +571,7 @@ out: > > > static const struct file_operations debugfs_raw_data_fops = { > - .open = edt_ft5x06_debugfs_raw_data_open, > + .open = simple_open, > .read = edt_ft5x06_debugfs_raw_data_read, > }; > > >
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c index 099d144..d9c6007 100644 --- a/drivers/input/touchscreen/edt-ft5x06.c +++ b/drivers/input/touchscreen/edt-ft5x06.c @@ -491,14 +491,6 @@ static int edt_ft5x06_debugfs_mode_set(void *data, u64 mode) DEFINE_SIMPLE_ATTRIBUTE(debugfs_mode_fops, edt_ft5x06_debugfs_mode_get, edt_ft5x06_debugfs_mode_set, "%llu\n"); -static int edt_ft5x06_debugfs_raw_data_open(struct inode *inode, - struct file *file) -{ - file->private_data = inode->i_private; - - return 0; -} - static ssize_t edt_ft5x06_debugfs_raw_data_read(struct file *file, char __user *buf, size_t count, loff_t *off) { @@ -579,7 +571,7 @@ out: static const struct file_operations debugfs_raw_data_fops = { - .open = edt_ft5x06_debugfs_raw_data_open, + .open = simple_open, .read = edt_ft5x06_debugfs_raw_data_read, };