Re: [PATCH 1/2] firmware: fix typo "upto" in comments
From: Kumar, Udit <hidden>
Date: 2026-09-04 17:13:00
Also in:
lkml
On 9/4/2026 6:05 PM, Hemanth Selam wrote:
Correct "upto" to "up to", reported by scripts/checkpatch.pl using the misspelling list in scripts/spelling.txt. Only touches comments, no code changes.
Please fix subject line of patch see rest of contributions git log drivers/firmware/ti_sci.c
quoted hunk ↗ jump to hunk
Assisted-by: Cursor:claude-opus-5 Signed-off-by: Hemanth Selam <redacted> --- drivers/firmware/ti_sci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c index cc747ab0237f..94104edba9a0 100644 --- a/drivers/firmware/ti_sci.c +++ b/drivers/firmware/ti_sci.c@@ -4050,7 +4050,7 @@ static const struct ti_sci_desc ti_sci_pmmc_k2g_desc = { .default_host_id = 2, /* Conservative duration */ .max_rx_timeout_ms = 1000, - /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */ + /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle up to 128 messages! */ .max_msgs = 20, .max_msg_size = 64, };@@ -4060,7 +4060,7 @@ static const struct ti_sci_desc ti_sci_pmmc_am654_desc = { .default_host_id = 12, /* Conservative duration */ .max_rx_timeout_ms = 10000, - /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */ + /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle up to 128 messages! */ .max_msgs = 20, .max_msg_size = 60, };