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 <quic_zijuhu@quicinc.com> Link: https://lore.kernel.org/r/20240908-trivial_simpli-v1-1-53e0f1363299@quicinc.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent fea64fa commit efb0b30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)