[PATCH] initramfs: Remove unnecessary (void*) conversions

From: Li zeming
Date: Thu Nov 03 2022 - 22:08:24 EST


The bufv pointer does not need to cast the type.

Signed-off-by: Li zeming <zeming@xxxxxxxxxxxx>
---
init/initramfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/init/initramfs.c b/init/initramfs.c
index 18229cfe8906..3dbd0012eb3b 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -461,7 +461,7 @@ static long __init write_buffer(char *buf, unsigned long len)

static long __init flush_buffer(void *bufv, unsigned long len)
{
- char *buf = (char *) bufv;
+ char *buf = bufv;
long written;
long origLen = len;
if (message)
--
2.18.2