All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] init: main: Remove unnecessary (void*) conversions
@ 2022-11-03  1:39 Li zeming
  0 siblings, 0 replies; only message in thread
From: Li zeming @ 2022-11-03  1:39 UTC (permalink / raw)
  To: akpm, vbabka, keescook, mhiramat, edumazet, christophe.leroy
  Cc: linux-kernel, Li zeming

The data pointer does not need to cast the type.

Signed-off-by: Li zeming <zeming@nfschina.com>
---
 init/main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/init/main.c b/init/main.c
index 1fe7942f5d4a..6ac4a7f8d034 100644
--- a/init/main.c
+++ b/init/main.c
@@ -1237,7 +1237,7 @@ __setup("initcall_blacklist=", initcall_blacklist);
 static __init_or_module void
 trace_initcall_start_cb(void *data, initcall_t fn)
 {
-	ktime_t *calltime = (ktime_t *)data;
+	ktime_t *calltime = data;
 
 	printk(KERN_DEBUG "calling  %pS @ %i\n", fn, task_pid_nr(current));
 	*calltime = ktime_get();
@@ -1246,7 +1246,7 @@ trace_initcall_start_cb(void *data, initcall_t fn)
 static __init_or_module void
 trace_initcall_finish_cb(void *data, initcall_t fn, int ret)
 {
-	ktime_t rettime, *calltime = (ktime_t *)data;
+	ktime_t rettime, *calltime = data;
 
 	rettime = ktime_get();
 	printk(KERN_DEBUG "initcall %pS returned %d after %lld usecs\n",
-- 
2.18.2


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-11-03  1:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-03  1:39 [PATCH] init: main: Remove unnecessary (void*) conversions Li zeming

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.