]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
EDAC/sb_edac: fix grammar in sb_decode_ddr3 warning
authorThorsten Blum <thorsten.blum@linux.dev>
Fri, 8 May 2026 14:38:46 +0000 (16:38 +0200)
committerTony Luck <tony.luck@intel.com>
Fri, 29 May 2026 15:34:12 +0000 (08:34 -0700)
Fix the warning in sb_decode_ddr3() by adding the missing verb "is" and
using "supported" instead of "support" to match the LockStep warning in
sb_decode_ddr4().

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Reviewed-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
Link: https://patch.msgid.link/20260508143844.2996-3-thorsten.blum@linux.dev
drivers/edac/sb_edac.c

index 7b282dfd093f2e4a6a0d796a02b2ba755490805f..35eb7a2038ab3a6ad52b9ff7008bb648b7eb042d 100644 (file)
@@ -2016,7 +2016,7 @@ static bool sb_decode_ddr4(struct mem_ctl_info *mci, int ch, u8 rank,
 static bool sb_decode_ddr3(struct mem_ctl_info *mci, int ch, u8 rank,
                           u64 rank_addr, char *msg)
 {
-       pr_warn_once("DDR3 row/column decode not support yet!\n");
+       pr_warn_once("DDR3 row/column decode is not supported yet!\n");
        msg[0] = '\0';
        return false;
 }