staging: rtl8712: rtl871x_mp_ioctl: Remove exceptional & on function name
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Sun, 6 Mar 2016 00:44:43 +0000 (06:14 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
commitbce2fc58b75a2e39dd50502aa8fe9f49b30fa478
tree1d880c5cd03925a39e4df08452331527eaac7ec3
parent6806be3184132451a3e10cee7a52f0a8e9c4cea9
staging: rtl8712: rtl871x_mp_ioctl: Remove exceptional & on function name

In this file, function names are otherwise used as pointers without
&.

The Coccinelle semantic patch that is used to make this change is as
follows:

// <smpl>
@r@
identifier f;
@@
f(...) { ... }
@@
identifier r.f;
@@
- &f
+ f
@m@
type T;
identifier f;
@@
T f(...);
@@
identifier m.f;
@@
- &f
+ f
// </smpl>

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_mp_ioctl.h