Skip to content

Commit efb0b30

Browse files
zijun-hugregkh
authored andcommitted
driver core: Trivially simplify ((struct device_private *)curr)->device->p to @Curr
Trivially simplify ((struct device_private *)curr)->device->p to @Curr in deferred_devs_show() since both are same. Signed-off-by: Zijun Hu <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent fea64fa commit efb0b30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/base/dd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ static int deferred_devs_show(struct seq_file *s, void *data)
248248

249249
list_for_each_entry(curr, &deferred_probe_pending_list, deferred_probe)
250250
seq_printf(s, "%s\t%s", dev_name(curr->device),
251-
curr->device->p->deferred_probe_reason ?: "\n");
251+
curr->deferred_probe_reason ?: "\n");
252252

253253
mutex_unlock(&deferred_probe_mutex);
254254

0 commit comments

Comments
 (0)