Tag: 25034ff83c25c8d1a114e3219fbf6c7b5a006622

staging: rtl8188eu: Compress two statements into one.

Author: Navya Sri Nizamkari <navyasri.tech@gmail.com> This patch removes the use of a variable used only for returning a value. The following coccinelle script was used to discover it: @@ expression ret; identifier f; @@ -ret = +return f(…); -return ret; It also fixes the checkpatch.pl warning about line being over 80 characters, in the lines …

Continue reading