Message ID | 20221104020726.3413-1-zeming@nfschina.com |
---|---|
State | New |
Headers | |
Series | initramfs: Remove unnecessary (void*) conversions | |
Commit Message
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)