From: Ethan Nelson-Moore Date: Sat, 13 Jun 2026 23:37:25 +0000 (-0700) Subject: sctp: correct CONFIG_SCTP_DBG_OBJCNT macro name in comment X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb82367bca5656c99d98bba65f101776e2c2dc36;p=thirdparty%2Fkernel%2Flinux.git sctp: correct CONFIG_SCTP_DBG_OBJCNT macro name in comment A comment in incorrectly refers to CONFIG_SCTP_DBG_OBJCOUNT instead of CONFIG_SCTP_DBG_OBJCNT. Correct it. Discovered while searching for CONFIG_* symbols referenced in code but not defined in any Kconfig file. Signed-off-by: Ethan Nelson-Moore Link: https://patch.msgid.link/20260613233725.162470-1-enelsonmoore@gmail.com Signed-off-by: Jakub Kicinski --- diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index 58242b37b47a1..60b073fd3ed83 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h @@ -303,7 +303,7 @@ void sctp_dbg_objcnt_init(struct net *); static inline void sctp_dbg_objcnt_init(struct net *net) { return; } -#endif /* CONFIG_SCTP_DBG_OBJCOUNT */ +#endif /* CONFIG_SCTP_DBG_OBJCNT */ #if defined CONFIG_SYSCTL void sctp_sysctl_register(void);