Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] firmware: fix typo "upto" in comments
       [not found] <20260904123541.38602-1-hemanth.selam@gmail.com>
@ 2026-09-04 12:35 ` Hemanth Selam
  2026-09-04 17:11   ` Kumar, Udit
  2026-09-04 12:35 ` [PATCH 2/2] perf: fix typo "binded" in comment Hemanth Selam
  1 sibling, 1 reply; 3+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:35 UTC (permalink / raw)
  To: Nishanth Menon, Tero Kristo, Santosh Shilimkar
  Cc: linux-kernel, linux-arm-kernel

Correct "upto" to "up to", reported by scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt.  Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 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,
 };
-- 
2.48.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] perf: fix typo "binded" in comment
       [not found] <20260904123541.38602-1-hemanth.selam@gmail.com>
  2026-09-04 12:35 ` [PATCH 1/2] firmware: fix typo "upto" in comments Hemanth Selam
@ 2026-09-04 12:35 ` Hemanth Selam
  1 sibling, 0 replies; 3+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:35 UTC (permalink / raw)
  To: Shuai Xue, Jing Zhang, Will Deacon, Mark Rutland
  Cc: linux-kernel, linux-arm-kernel, linux-perf-users

Correct "binded" to "bound", reported by scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt.  Only touches comments, no code
changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 drivers/perf/dwc_pcie_pmu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/perf/dwc_pcie_pmu.c b/drivers/perf/dwc_pcie_pmu.c
index 6b9ed59de26e..e2435ccc04ca 100644
--- a/drivers/perf/dwc_pcie_pmu.c
+++ b/drivers/perf/dwc_pcie_pmu.c
@@ -639,7 +639,7 @@ static void dwc_pcie_pmu_remove_cpuhp_instance(void *hotplug_node)
 }
 
 /*
- * Find the binded DES capability device info of a PCI device.
+ * Find the bound DES capability device info of a PCI device.
  * @pdev: The PCI device.
  */
 static struct dwc_pcie_dev_info *dwc_pcie_find_dev_info(struct pci_dev *pdev)
-- 
2.48.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] firmware: fix typo "upto" in comments
  2026-09-04 12:35 ` [PATCH 1/2] firmware: fix typo "upto" in comments Hemanth Selam
@ 2026-09-04 17:11   ` Kumar, Udit
  0 siblings, 0 replies; 3+ messages in thread
From: Kumar, Udit @ 2026-09-04 17:11 UTC (permalink / raw)
  To: Hemanth Selam, Nishanth Menon, Tero Kristo, Santosh Shilimkar
  Cc: linux-kernel, linux-arm-kernel, u-kumar1



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

> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> ---
>  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,
>  };



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-09-04 17:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20260904123541.38602-1-hemanth.selam@gmail.com>
2026-09-04 12:35 ` [PATCH 1/2] firmware: fix typo "upto" in comments Hemanth Selam
2026-09-04 17:11   ` Kumar, Udit
2026-09-04 12:35 ` [PATCH 2/2] perf: fix typo "binded" in comment Hemanth Selam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox