aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/random.c
diff options
context:
space:
mode:
authorBorislav Petkov <bp@alien8.de>2019-10-01 13:50:23 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2019-10-02 16:49:43 -0400
commit3fd57e7a9e66b9a8bcbf0560ff09e84d0b8de1bd (patch)
tree0fb931bcdec37facf1b2c5cb79b108dbac14c9e6 /drivers/char/random.c
parent54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c (diff)
char/random: Add a newline at the end of the file
On Tue, Oct 01, 2019 at 10:14:40AM -0700, Linus Torvalds wrote: > The previous state of the file didn't have that 0xa at the end, so you get that > > > -EXPORT_SYMBOL_GPL(add_bootloader_randomness); > \ No newline at end of file > +EXPORT_SYMBOL_GPL(add_bootloader_randomness); > > which is "the '-' line doesn't have a newline, the '+' line does" marker. Aaha, that makes total sense, thanks for explaining. Oh well, let's fix it then so that people don't scratch heads like me. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/random.c')
-rw-r--r--drivers/char/random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c
index c2f7de9dc543..de434feb873a 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -2520,4 +2520,4 @@ void add_bootloader_randomness(const void *buf, unsigned int size)
2520 else 2520 else
2521 add_device_randomness(buf, size); 2521 add_device_randomness(buf, size);
2522} 2522}
2523EXPORT_SYMBOL_GPL(add_bootloader_randomness); \ No newline at end of file 2523EXPORT_SYMBOL_GPL(add_bootloader_randomness);