From: Colin Ian King Date: Fri, 3 May 2019 12:10:17 +0000 (+0100) Subject: net: rds: fix spelling mistake "syctl" -> "sysctl" X-Git-Tag: v5.15~6431^2^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d14a108d510ec66f6db15509b9d7d2f0b6208145;p=platform%2Fkernel%2Flinux-starfive.git net: rds: fix spelling mistake "syctl" -> "sysctl" There is a spelling mistake in a pr_warn warning. Fix it. Signed-off-by: Colin Ian King Acked-by: Santosh Shilimkar Signed-off-by: David S. Miller --- diff --git a/net/rds/tcp.c b/net/rds/tcp.c index faf726e..66121bc 100644 --- a/net/rds/tcp.c +++ b/net/rds/tcp.c @@ -551,7 +551,7 @@ static __net_init int rds_tcp_init_net(struct net *net) tbl = kmemdup(rds_tcp_sysctl_table, sizeof(rds_tcp_sysctl_table), GFP_KERNEL); if (!tbl) { - pr_warn("could not set allocate syctl table\n"); + pr_warn("could not set allocate sysctl table\n"); return -ENOMEM; } rtn->ctl_table = tbl;