linux-sg2042/drivers/net/wireless/wl1251
Stephen Boyd 234e340582 simple_open: automatically convert to simple_open()
Many users of debugfs copy the implementation of default_open() when
they want to support a custom read/write function op.  This leads to a
proliferation of the default_open() implementation across the entire
tree.

Now that the common implementation has been consolidated into libfs we
can replace all the users of this function with simple_open().

This replacement was done with the following semantic patch:

<smpl>
@ open @
identifier open_f != simple_open;
identifier i, f;
@@
-int open_f(struct inode *i, struct file *f)
-{
(
-if (i->i_private)
-f->private_data = i->i_private;
|
-f->private_data = i->i_private;
)
-return 0;
-}

@ has_open depends on open @
identifier fops;
identifier open.open_f;
@@
struct file_operations fops = {
...
-.open = open_f,
+.open = simple_open,
...
};
</smpl>

[akpm@linux-foundation.org: checkpatch fixes]
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-04-05 15:25:50 -07:00
..
Kconfig
Makefile wl1251: enable sparse endianess check by default 2012-02-15 08:38:27 +02:00
acx.c drivers/net/wireless/wl1251: add missing kfree 2011-08-10 14:07:10 -04:00
acx.h wl1251: implement connection quality monitoring 2011-02-03 16:44:42 -05:00
boot.c wl1251: fix sparse warning 2012-02-15 08:38:27 +02:00
boot.h
cmd.c drivers/net/wireless/wl1251: add missing kfree 2011-08-10 14:07:10 -04:00
cmd.h wl1251: remove wext dependencies 2011-08-08 14:26:21 -04:00
debugfs.c simple_open: automatically convert to simple_open() 2012-04-05 15:25:50 -07:00
debugfs.h
event.c wl1251: Prepare for idle mode support 2011-04-07 15:34:14 -04:00
event.h
init.c
init.h
io.c
io.h wl1251: convert 32-bit values to le32 before writing to the chip 2012-02-15 08:38:27 +02:00
main.c mac80211: make CQM RSSI support per virtual interface 2012-01-27 14:56:54 -05:00
ps.c wl1251: Add support for idle mode 2011-04-07 15:34:14 -04:00
ps.h wl1251: Prepare for idle mode support 2011-04-07 15:34:14 -04:00
reg.h
rx.c Fix common misspellings 2011-03-31 11:26:23 -03:00
rx.h
sdio.c net: remove interrupt.h inclusion from netdevice.h 2011-06-06 22:55:11 -07:00
spi.c wireless: Remove redundant spi driver bus initialization 2011-11-28 14:43:58 -05:00
spi.h
tx.c wl1251: fix 4-byte TX buffer alignment 2011-02-03 16:42:44 -05:00
tx.h
wl12xx_80211.h wl1251: remove wext dependencies 2011-08-08 14:26:21 -04:00
wl1251.h wl1251: convert 32-bit values to le32 before writing to the chip 2012-02-15 08:38:27 +02:00