projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2f998a
)
dm: remove unnecessary (void*) conversion in event_callback()
author
XU pengfei
<xupengfei@nfschina.com>
Fri, 17 Feb 2023 01:14:21 +0000
(09:14 +0800)
committer
Mike Snitzer
<snitzer@kernel.org>
Mon, 20 Feb 2023 16:52:49 +0000
(11:52 -0500)
Pointer variables of void * type do not require type cast.
Signed-off-by: XU pengfei <xupengfei@nfschina.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm.c
patch
|
blob
|
history
diff --git
a/drivers/md/dm.c
b/drivers/md/dm.c
index adb002b8648df03587775dc4635385976982c1a7..eace45a18d45611e70e1b4a988d674535925a30a 100644
(file)
--- a/
drivers/md/dm.c
+++ b/
drivers/md/dm.c
@@
-2144,7
+2144,7
@@
static void event_callback(void *context)
{
unsigned long flags;
LIST_HEAD(uevents);
- struct mapped_device *md =
(struct mapped_device *)
context;
+ struct mapped_device *md = context;
spin_lock_irqsave(&md->uevent_lock, flags);
list_splice_init(&md->uevent_list, &uevents);