summaryrefslogtreecommitdiff
path: root/drivers/firmware
diff options
context:
space:
mode:
authorPeng Fan <[email protected]>2025-09-27 00:06:14 +0800
committerTom Rini <[email protected]>2025-10-09 14:16:11 -0600
commit92fe41caadfd01b6c31df12195b8a9b59ad4f4f5 (patch)
tree20d7014eb20d78464bdc2392f8d067a51ee1a2e4 /drivers/firmware
parent44c4919e9dd6c162b237633ba689441eca9a149c (diff)
firmware: scmi: Typo fix
Typo: 'to' -> 'too' Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers/firmware')
-rw-r--r--drivers/firmware/scmi/smt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/scmi/smt.c b/drivers/firmware/scmi/smt.c
index 3253f4211d6..a7721bbe54e 100644
--- a/drivers/firmware/scmi/smt.c
+++ b/drivers/firmware/scmi/smt.c
@@ -129,7 +129,7 @@ int scmi_read_resp_from_smt(struct udevice *dev, struct scmi_smt *smt,
}
if (hdr->length > msg->out_msg_sz + sizeof(hdr->msg_header)) {
- dev_err(dev, "Buffer to small\n");
+ dev_err(dev, "Buffer too small\n");
return -ETOOSMALL;
}
@@ -191,7 +191,7 @@ int scmi_msg_from_smt_msg(struct udevice *dev, struct scmi_smt *smt,
struct scmi_smt_msg_header *hdr = (void *)smt->buf;
if (buf_size > msg->out_msg_sz + sizeof(hdr->msg_header)) {
- dev_err(dev, "Buffer to small\n");
+ dev_err(dev, "Buffer too small\n");
return -ETOOSMALL;
}