staging: speakup: selection: replace _manual_ swap with swap macro
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Fri, 10 Nov 2017 22:13:03 +0000 (16:13 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2017 08:20:40 +0000 (09:20 +0100)
Make use of the swap macro instead of _manually_ swapping values
and remove unnecessary variable tmp.

This makes the code easier to read and maintain.

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/speakup/selection.c

index 66061b5..0ed1fef 100644 (file)
@@ -64,13 +64,8 @@ int speakup_set_selection(struct tty_struct *tty)
        ps = spk_ys * vc->vc_size_row + (spk_xs << 1);
        pe = spk_ye * vc->vc_size_row + (spk_xe << 1);
 
-       if (ps > pe) {
-               /* make sel_start <= sel_end */
-               int tmp = ps;
-
-               ps = pe;
-               pe = tmp;
-       }
+       if (ps > pe)    /* make sel_start <= sel_end */
+               swap(ps, pe);
 
        if (spk_sel_cons != vc_cons[fg_console].d) {
                speakup_clear_selection();