[PATCH] random: remove the redundant space for the pointer variables.

From: zhaoxiao
Date: Fri Feb 26 2021 - 07:50:06 EST


The following pointer variables don't meet the kernel coding style,
so remove the redundant space.

Signed-off-by: zhaoxiao <zhaoxiao@xxxxxxxxxxxxx>
---
drivers/char/random.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/char/random.c b/drivers/char/random.c
index 0fe9e200e4c8..bbec50b8641e 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -920,8 +920,8 @@ static int crng_slow_load(const char *cp, size_t len)
static unsigned char lfsr = 1;
unsigned char tmp;
unsigned i, max = CHACHA_KEY_SIZE;
- const char * src_buf = cp;
- char * dest_buf = (char *) &primary_crng.state[4];
+ const char *src_buf = cp;
+ char *dest_buf = (char *)&primary_crng.state[4];

if (!spin_trylock_irqsave(&primary_crng.lock, flags))
return 0;
@@ -1855,7 +1855,7 @@ random_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
}

static __poll_t
-random_poll(struct file *file, poll_table * wait)
+random_poll(struct file *file, poll_table *wait)
{
__poll_t mask;

--
2.30.1