[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20221026080517.3221-1-xupengfei@nfschina.com>
Date: Wed, 26 Oct 2022 16:05:18 +0800
From: XU pengfei <xupengfei@...china.com>
To: akpm@...ux-foundation.org, ddiss@...e.de, brauner@...nel.org,
mwilck@...e.com, rppt@...nel.org, wuchi.zero@...il.com,
ebiederm@...ssion.com
Cc: linux-kernel@...r.kernel.org, XU pengfei <xupengfei@...china.com>
Subject: [PATCH 1/1] initramfs: remove unnecessary (void*) conversions
remove unnecessary void* type casting.
Signed-off-by: XU pengfei <xupengfei@...china.com>
---
init/initramfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init/initramfs.c b/init/initramfs.c
index 2f5bfb7d7652..62321883fe61 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
Powered by blists - more mailing lists