2022-11-04 02:10:41

by Li zeming

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

The bufv pointer does not need to cast the type.

Signed-off-by: Li zeming <[email protected]>
---
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