diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2025-04-23 12:37:19 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2025-04-24 18:20:40 -0700 |
commit | 4134bb726efdc7a4a64bd0f776359cb0564564b2 (patch) | |
tree | 9ac394e74607daccdd278c8745bf7b0528f90329 | |
parent | 3a4236c379543878e957004d3415152d28955481 (diff) |
net: ip_gre: Fix spelling mistake "demultiplexor" -> "demultiplexer"
There is a spelling mistake in a pr_info message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20250423113719.173539-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | net/ipv4/gre_demux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/gre_demux.c b/net/ipv4/gre_demux.c index 6701a98d9a9f..dafd68f3436a 100644 --- a/net/ipv4/gre_demux.c +++ b/net/ipv4/gre_demux.c @@ -199,7 +199,7 @@ static const struct net_protocol net_gre_protocol = { static int __init gre_init(void) { - pr_info("GRE over IPv4 demultiplexor driver\n"); + pr_info("GRE over IPv4 demultiplexer driver\n"); if (inet_add_protocol(&net_gre_protocol, IPPROTO_GRE) < 0) { pr_err("can't add protocol\n"); |