All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] platform: x86: Typo fix in the file classmate-laptop.c
@ 2021-03-17  8:43 Bhaskar Chowdhury
  2021-03-17 10:34 ` Thadeu Lima de Souza Cascardo
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-17  8:43 UTC (permalink / raw)
  To: cascardo, don, hdegoede, mgross, platform-driver-x86, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/derefence/dereference/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 drivers/platform/x86/classmate-laptop.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c
index 3e03e8d3a07f..9309ab5792cb 100644
--- a/drivers/platform/x86/classmate-laptop.c
+++ b/drivers/platform/x86/classmate-laptop.c
@@ -956,7 +956,7 @@ static int cmpc_ipml_add(struct acpi_device *acpi)
 	/*
 	 * If RFKILL is disabled, rfkill_alloc will return ERR_PTR(-ENODEV).
 	 * This is OK, however, since all other uses of the device will not
-	 * derefence it.
+	 * dereference it.
 	 */
 	if (ipml->rf) {
 		retval = rfkill_register(ipml->rf);
--
2.30.2


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

* Re: [PATCH] platform: x86: Typo fix in the file classmate-laptop.c
  2021-03-17  8:43 [PATCH] platform: x86: Typo fix in the file classmate-laptop.c Bhaskar Chowdhury
@ 2021-03-17 10:34 ` Thadeu Lima de Souza Cascardo
  2021-03-17 17:25 ` Randy Dunlap
  2021-03-23 19:57 ` Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Thadeu Lima de Souza Cascardo @ 2021-03-17 10:34 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: don, hdegoede, mgross, platform-driver-x86, linux-kernel, rdunlap

On Wed, Mar 17, 2021 at 02:13:43PM +0530, Bhaskar Chowdhury wrote:
> 
> s/derefence/dereference/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Thadeu Lima de Souza Cascardo <cascardo@cascardo.eti.br>

> ---
>  drivers/platform/x86/classmate-laptop.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c
> index 3e03e8d3a07f..9309ab5792cb 100644
> --- a/drivers/platform/x86/classmate-laptop.c
> +++ b/drivers/platform/x86/classmate-laptop.c
> @@ -956,7 +956,7 @@ static int cmpc_ipml_add(struct acpi_device *acpi)
>  	/*
>  	 * If RFKILL is disabled, rfkill_alloc will return ERR_PTR(-ENODEV).
>  	 * This is OK, however, since all other uses of the device will not
> -	 * derefence it.
> +	 * dereference it.
>  	 */
>  	if (ipml->rf) {
>  		retval = rfkill_register(ipml->rf);
> --
> 2.30.2
> 

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

* Re: [PATCH] platform: x86: Typo fix in the file classmate-laptop.c
  2021-03-17  8:43 [PATCH] platform: x86: Typo fix in the file classmate-laptop.c Bhaskar Chowdhury
  2021-03-17 10:34 ` Thadeu Lima de Souza Cascardo
@ 2021-03-17 17:25 ` Randy Dunlap
  2021-03-23 19:57 ` Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2021-03-17 17:25 UTC (permalink / raw)
  To: Bhaskar Chowdhury, cascardo, don, hdegoede, mgross,
	platform-driver-x86, linux-kernel

On 3/17/21 1:43 AM, Bhaskar Chowdhury wrote:
> 
> s/derefence/dereference/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  drivers/platform/x86/classmate-laptop.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c
> index 3e03e8d3a07f..9309ab5792cb 100644
> --- a/drivers/platform/x86/classmate-laptop.c
> +++ b/drivers/platform/x86/classmate-laptop.c
> @@ -956,7 +956,7 @@ static int cmpc_ipml_add(struct acpi_device *acpi)
>  	/*
>  	 * If RFKILL is disabled, rfkill_alloc will return ERR_PTR(-ENODEV).
>  	 * This is OK, however, since all other uses of the device will not
> -	 * derefence it.
> +	 * dereference it.
>  	 */
>  	if (ipml->rf) {
>  		retval = rfkill_register(ipml->rf);
> --


-- 
~Randy


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

* Re: [PATCH] platform: x86: Typo fix in the file classmate-laptop.c
  2021-03-17  8:43 [PATCH] platform: x86: Typo fix in the file classmate-laptop.c Bhaskar Chowdhury
  2021-03-17 10:34 ` Thadeu Lima de Souza Cascardo
  2021-03-17 17:25 ` Randy Dunlap
@ 2021-03-23 19:57 ` Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Hans de Goede @ 2021-03-23 19:57 UTC (permalink / raw)
  To: Bhaskar Chowdhury, cascardo, don, mgross, platform-driver-x86,
	linux-kernel
  Cc: rdunlap

Hi,

On 3/17/21 9:43 AM, Bhaskar Chowdhury wrote:
> 
> s/derefence/dereference/
> 
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Thank you for your patch, I've applied this patch to my review-hans 
branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans

Note it will show up in my review-hans branch once I've pushed my
local branch there, which might take a while.

Once I've run some tests on this branch the patches there will be
added to the platform-drivers-x86/for-next branch and eventually
will be included in the pdx86 pull-request to Linus for the next
merge-window.

Regards,

Hans


> ---
>  drivers/platform/x86/classmate-laptop.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c
> index 3e03e8d3a07f..9309ab5792cb 100644
> --- a/drivers/platform/x86/classmate-laptop.c
> +++ b/drivers/platform/x86/classmate-laptop.c
> @@ -956,7 +956,7 @@ static int cmpc_ipml_add(struct acpi_device *acpi)
>  	/*
>  	 * If RFKILL is disabled, rfkill_alloc will return ERR_PTR(-ENODEV).
>  	 * This is OK, however, since all other uses of the device will not
> -	 * derefence it.
> +	 * dereference it.
>  	 */
>  	if (ipml->rf) {
>  		retval = rfkill_register(ipml->rf);
> --
> 2.30.2
> 


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

end of thread, other threads:[~2021-03-23 19:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  8:43 [PATCH] platform: x86: Typo fix in the file classmate-laptop.c Bhaskar Chowdhury
2021-03-17 10:34 ` Thadeu Lima de Souza Cascardo
2021-03-17 17:25 ` Randy Dunlap
2021-03-23 19:57 ` Hans de Goede

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.