wireguard: send: remove errant newline from packet_encrypt_worker
authorSultan Alsawaf <sultan@kerneltoast.com>
Wed, 29 Apr 2020 20:59:20 +0000 (14:59 -0600)
committerDavid S. Miller <davem@davemloft.net>
Wed, 29 Apr 2020 21:23:05 +0000 (14:23 -0700)
This commit removes a useless newline at the end of a scope, which
doesn't add anything in the way of organization or readability.

Signed-off-by: Sultan Alsawaf <sultan@kerneltoast.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wireguard/send.c

index 7348c10..3e030d6 100644 (file)
@@ -304,7 +304,6 @@ void wg_packet_encrypt_worker(struct work_struct *work)
                }
                wg_queue_enqueue_per_peer(&PACKET_PEER(first)->tx_queue, first,
                                          state);
-
        }
 }