Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net: netdevsim: correct typo in new_device_store error message

Fix the format hint by replacing "unit" with "uint" in the pr_err() string.

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Reviewed-by: Joe Damato <joe@dama.to>
Link: https://patch.msgid.link/20260319060812.495488-1-alok.a.tiwari@oracle.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Alok Tiwari and committed by
Jakub Kicinski
53edd830 609e7925

+1 -1
+1 -1
drivers/net/netdevsim/bus.c
··· 177 177 } 178 178 break; 179 179 default: 180 - pr_err("Format for adding new device is \"id port_count num_queues\" (uint uint unit).\n"); 180 + pr_err("Format for adding new device is \"id port_count num_queues\" (uint uint uint).\n"); 181 181 return -EINVAL; 182 182 } 183 183