mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] docs: ABI: Fix "diasble" to "disable"
       [not found] <20250517091814.1263768-1-sumanth.gavini.ref@yahoo.com>
@ 2025-05-17  9:18 ` Sumanth Gavini
  2025-05-22 22:58   ` Shuah Khan
  0 siblings, 1 reply; 6+ messages in thread
From: Sumanth Gavini @ 2025-05-17  9:18 UTC (permalink / raw)
  To: skhan, sumanth.gavini; +Cc: linux-kernel

 Fix misspelling reported by codespell

Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
---
 Documentation/ABI/testing/sysfs-devices-power | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power
index 54195530e97a..d3da88b26a53 100644
--- a/Documentation/ABI/testing/sysfs-devices-power
+++ b/Documentation/ABI/testing/sysfs-devices-power
@@ -56,7 +56,7 @@ Date:		January 2009
 Contact:	Rafael J. Wysocki <rjw@rjwysocki.net>
 Description:
 		The /sys/devices/.../async attribute allows the user space to
-		enable or diasble the device's suspend and resume callbacks to
+		enable or disable the device's suspend and resume callbacks to
 		be executed asynchronously (ie. in separate threads, in parallel
 		with the main suspend/resume thread) during system-wide power
 		transitions (eg. suspend to RAM, hibernation).
-- 
2.43.0


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

* Re: [PATCH] docs: ABI: Fix "diasble" to "disable"
  2025-05-17  9:18 ` [PATCH] docs: ABI: Fix "diasble" to "disable" Sumanth Gavini
@ 2025-05-22 22:58   ` Shuah Khan
  2025-05-23 22:02     ` [PATCH v2] " Sumanth Gavini
  0 siblings, 1 reply; 6+ messages in thread
From: Shuah Khan @ 2025-05-22 22:58 UTC (permalink / raw)
  To: Sumanth Gavini; +Cc: linux-kernel

On 5/17/25 03:18, Sumanth Gavini wrote:
>   Fix misspelling reported by codespell
> 
> Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
> ---
>   Documentation/ABI/testing/sysfs-devices-power | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power
> index 54195530e97a..d3da88b26a53 100644
> --- a/Documentation/ABI/testing/sysfs-devices-power
> +++ b/Documentation/ABI/testing/sysfs-devices-power
> @@ -56,7 +56,7 @@ Date:		January 2009
>   Contact:	Rafael J. Wysocki <rjw@rjwysocki.net>
>   Description:
>   		The /sys/devices/.../async attribute allows the user space to
> -		enable or diasble the device's suspend and resume callbacks to
> +		enable or disable the device's suspend and resume callbacks to
>   		be executed asynchronously (ie. in separate threads, in parallel
>   		with the main suspend/resume thread) during system-wide power
>   		transitions (eg. suspend to RAM, hibernation).

cc linux-pm, documentation list and PM maintainers on this patch. Looks like
get_maintainers.pl doesn't give you the complete list.

thanks,
-- Shuah

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

* [PATCH v2] docs: ABI: Fix "diasble" to "disable"
  2025-05-22 22:58   ` Shuah Khan
@ 2025-05-23 22:02     ` Sumanth Gavini
  2025-06-11 21:53       ` Sumanth Gavini
  2025-07-02 18:33       ` Rafael J. Wysocki
  0 siblings, 2 replies; 6+ messages in thread
From: Sumanth Gavini @ 2025-05-23 22:02 UTC (permalink / raw)
  To: skhan, rjw, stern, arjan, linux
  Cc: Sumanth Gavini, linux-kernel, linux-doc, linux-pm

 Fix misspelling reported by codespell

Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
---
changes in v2:
- No code changes
  - Link to v1: https://lore.kernel.org/lkml/a0f5b68d-e321-4ed3-a22c-24f80f4d906f@linuxfoundation.org/
- Addressed review comments from Shuah Khan.
  - get_maintainers.pl doesn't give you the complete list, So resending
    the patchv2 with linux-pm, doccumentation list and PM maintainers

---
 Documentation/ABI/testing/sysfs-devices-power | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power
index 54195530e97a..d3da88b26a53 100644
--- a/Documentation/ABI/testing/sysfs-devices-power
+++ b/Documentation/ABI/testing/sysfs-devices-power
@@ -56,7 +56,7 @@ Date:		January 2009
 Contact:	Rafael J. Wysocki <rjw@rjwysocki.net>
 Description:
 		The /sys/devices/.../async attribute allows the user space to
-		enable or diasble the device's suspend and resume callbacks to
+		enable or disable the device's suspend and resume callbacks to
 		be executed asynchronously (ie. in separate threads, in parallel
 		with the main suspend/resume thread) during system-wide power
 		transitions (eg. suspend to RAM, hibernation).
-- 
2.43.0


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

* [PATCH v2] docs: ABI: Fix "diasble" to "disable"
  2025-05-23 22:02     ` [PATCH v2] " Sumanth Gavini
@ 2025-06-11 21:53       ` Sumanth Gavini
  2025-06-18 20:44         ` Shuah Khan
  2025-07-02 18:33       ` Rafael J. Wysocki
  1 sibling, 1 reply; 6+ messages in thread
From: Sumanth Gavini @ 2025-06-11 21:53 UTC (permalink / raw)
  To: sumanth.gavini
  Cc: arjan, linux-doc, linux-kernel, linux-pm, linux, rjw, skhan, stern

Hi Shuah,

Just following up on my patch submitted on 2025-05-23 22:02  with subject "[[PATCH v2] docs: ABI: Fix "diasble" to "disable"]".

Original message: https://lore.kernel.org/all/20250523220238.455718-1-sumanth.gavini@yahoo.com/

Would you have any feedback on this change? I'd be happy to address any comments or concerns.

Thank you for your time and consideration.

Best regards,
Sumanth Gavini

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

* Re: [PATCH v2] docs: ABI: Fix "diasble" to "disable"
  2025-06-11 21:53       ` Sumanth Gavini
@ 2025-06-18 20:44         ` Shuah Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Shuah Khan @ 2025-06-18 20:44 UTC (permalink / raw)
  To: Sumanth Gavini
  Cc: arjan, linux-doc, linux-kernel, linux-pm, linux, rjw, stern

On 6/11/25 15:53, Sumanth Gavini wrote:
> Hi Shuah,
> 
> Just following up on my patch submitted on 2025-05-23 22:02  with subject "[[PATCH v2] docs: ABI: Fix "diasble" to "disable"]".
> 
> Original message: https://lore.kernel.org/all/20250523220238.455718-1-sumanth.gavini@yahoo.com/

> Would you have any feedback on this change? I'd be happy to address any comments or concerns.
> 
> Thank you for your time and consideration.
> 

Sumanth,

I am not the maintainer for this. Hope you have the right
people on the thread to review and accept the patch.

thanks,
-- Shuah


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

* Re: [PATCH v2] docs: ABI: Fix "diasble" to "disable"
  2025-05-23 22:02     ` [PATCH v2] " Sumanth Gavini
  2025-06-11 21:53       ` Sumanth Gavini
@ 2025-07-02 18:33       ` Rafael J. Wysocki
  1 sibling, 0 replies; 6+ messages in thread
From: Rafael J. Wysocki @ 2025-07-02 18:33 UTC (permalink / raw)
  To: Sumanth Gavini
  Cc: skhan, rjw, stern, arjan, linux, linux-kernel, linux-doc, linux-pm

On Sat, May 24, 2025 at 12:02 AM Sumanth Gavini
<sumanth.gavini@yahoo.com> wrote:
>
>  Fix misspelling reported by codespell
>
> Signed-off-by: Sumanth Gavini <sumanth.gavini@yahoo.com>
> ---
> changes in v2:
> - No code changes
>   - Link to v1: https://lore.kernel.org/lkml/a0f5b68d-e321-4ed3-a22c-24f80f4d906f@linuxfoundation.org/
> - Addressed review comments from Shuah Khan.
>   - get_maintainers.pl doesn't give you the complete list, So resending
>     the patchv2 with linux-pm, doccumentation list and PM maintainers
>
> ---
>  Documentation/ABI/testing/sysfs-devices-power | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power
> index 54195530e97a..d3da88b26a53 100644
> --- a/Documentation/ABI/testing/sysfs-devices-power
> +++ b/Documentation/ABI/testing/sysfs-devices-power
> @@ -56,7 +56,7 @@ Date:         January 2009
>  Contact:       Rafael J. Wysocki <rjw@rjwysocki.net>
>  Description:
>                 The /sys/devices/.../async attribute allows the user space to
> -               enable or diasble the device's suspend and resume callbacks to
> +               enable or disable the device's suspend and resume callbacks to
>                 be executed asynchronously (ie. in separate threads, in parallel
>                 with the main suspend/resume thread) during system-wide power
>                 transitions (eg. suspend to RAM, hibernation).
> --

Applied as 6.17 material, thanks!

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

end of thread, other threads:[~2025-07-02 18:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20250517091814.1263768-1-sumanth.gavini.ref@yahoo.com>
2025-05-17  9:18 ` [PATCH] docs: ABI: Fix "diasble" to "disable" Sumanth Gavini
2025-05-22 22:58   ` Shuah Khan
2025-05-23 22:02     ` [PATCH v2] " Sumanth Gavini
2025-06-11 21:53       ` Sumanth Gavini
2025-06-18 20:44         ` Shuah Khan
2025-07-02 18:33       ` Rafael J. Wysocki

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

all inboxes | Powered by JetHome®