staging: rtl8712: remove unnecessary return variables
authorWambui Karuga <wambui.karugax@gmail.com>
Sat, 12 Oct 2019 22:19:15 +0000 (01:19 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Oct 2019 13:36:54 +0000 (15:36 +0200)
commitf89c7d575d7c8b92c53e5472d90d542bbdeb47f6
treef8c08d5f7a4bc96c644da90542d64e45b5c2b462
parent180245d2d01686f61b3d1909bdf349a6d153008b
staging: rtl8712: remove unnecessary return variables

Remove variables that are only used to hold and return constants and
have the functions directly return the constants.

Issue found by coccinelle:
@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Link: https://lore.kernel.org/r/f61a0f036af24228c682c6b12c3a8e6cf6736185.1570918228.git.wambui.karugax@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_mp_ioctl.c