Author: Alison Schofield <amsfield22@gmail.com> Simplify function return by merging assignment and return into one command line. Remove (now) unused local variable. Found using Coccinelle: @@ expression e, ret; @@ -ret = +return e; -return ret; Signed-off-by: Alison Schofield Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman — drivers/staging/speakup/i18n.c | 5 +—- 1 file changed, 1 insertion(+), 4 …