projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
609e792
)
net: netdevsim: correct typo in new_device_store error message
author
Alok Tiwari
<alok.a.tiwari@oracle.com>
Thu, 19 Mar 2026 06:08:10 +0000
(23:08 -0700)
committer
Jakub Kicinski
<kuba@kernel.org>
Sat, 21 Mar 2026 03:12:01 +0000
(20:12 -0700)
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>
drivers/net/netdevsim/bus.c
patch
|
blob
|
history
diff --git
a/drivers/net/netdevsim/bus.c
b/drivers/net/netdevsim/bus.c
index
f85b1c2
..
41483e3
100644
(file)
--- a/
drivers/net/netdevsim/bus.c
+++ b/
drivers/net/netdevsim/bus.c
@@
-177,7
+177,7
@@
new_device_store(const struct bus_type *bus, const char *buf, size_t count)
}
break;
default:
- pr_err("Format for adding new device is \"id port_count num_queues\" (uint uint u
ni
t).\n");
+ pr_err("Format for adding new device is \"id port_count num_queues\" (uint uint u
in
t).\n");
return -EINVAL;
}