random: Fix whitespace pre random-bytes work
authorTobin C. Harding <me@tobin.cc>
Thu, 21 Jun 2018 23:15:31 +0000 (09:15 +1000)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 18 Jul 2018 01:32:48 +0000 (21:32 -0400)
There are a couple of whitespace issues around the function
get_random_bytes_arch().  In preparation for patching this function
let's clean them up.

Acked-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
drivers/char/random.c

index bd449ad..8e53e95 100644 (file)
@@ -1737,7 +1737,7 @@ void get_random_bytes_arch(void *buf, int nbytes)
 
                if (!arch_get_random_long(&v))
                        break;
-               
+
                memcpy(p, &v, chunk);
                p += chunk;
                nbytes -= chunk;
@@ -1748,7 +1748,6 @@ void get_random_bytes_arch(void *buf, int nbytes)
 }
 EXPORT_SYMBOL(get_random_bytes_arch);
 
-
 /*
  * init_std_data - initialize pool with system data
  *