staging: rtl8712: Remove exceptional & on function name
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Sun, 21 Feb 2016 14:23:27 +0000 (19:53 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
commitecf2e02cd419fa4e50711b467931f652943735fd
tree3919f9e2919302a78b913e9a991bd80fed73b9b0
parentfe5e5e3a1627f2588fbdc3b554a54febf44395f6
staging: rtl8712: Remove exceptional & on function name

Remove exceptional '&' operator in front of a function name.

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/usb_intf.c
drivers/staging/rtl8712/usb_ops.c