summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2026-05-08 16:38:46 +0200
committerTony Luck <tony.luck@intel.com>2026-05-29 08:34:12 -0700
commitb0947c6d2464ce58a6a80548d2135f9e95d2aa02 (patch)
tree53cbb3668f6fd658c5b2ceba7a470a26168cc331 /drivers
parent0dc6ed85303e691dc657607cee6b68be5ade3988 (diff)
EDAC/sb_edac: fix grammar in sb_decode_ddr3 warning
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
Diffstat (limited to 'drivers')
-rw-r--r--drivers/edac/sb_edac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/sb_edac.c b/drivers/edac/sb_edac.c
index 7b282dfd093f..35eb7a2038ab 100644
--- a/drivers/edac/sb_edac.c
+++ b/drivers/edac/sb_edac.c
@@ -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;
}