public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform"
@ 2023-12-15 11:27 Colin Ian King
  2023-12-15 11:40 ` Ilpo Järvinen
  2023-12-18 13:59 ` Hans de Goede
  0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2023-12-15 11:27 UTC (permalink / raw)
  To: Henry Shi, Hans de Goede, Ilpo Järvinen, platform-driver-x86
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a literal string. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/platform/x86/silicom-platform.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/silicom-platform.c b/drivers/platform/x86/silicom-platform.c
index 84b92b3f9f4b..6ce43ccb3112 100644
--- a/drivers/platform/x86/silicom-platform.c
+++ b/drivers/platform/x86/silicom-platform.c
@@ -866,7 +866,7 @@ static int silicom_fan_control_read_labels(struct device *dev,
 {
 	switch (type) {
 	case hwmon_fan:
-		*str = "Silicom_platfomr: Fan Speed";
+		*str = "Silicom_platform: Fan Speed";
 		return 0;
 	case hwmon_temp:
 		*str = "Silicom_platform: Thermostat Sensor";
-- 
2.39.2


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

* Re: [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform"
  2023-12-15 11:27 [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform" Colin Ian King
@ 2023-12-15 11:40 ` Ilpo Järvinen
  2023-12-18 13:59 ` Hans de Goede
  1 sibling, 0 replies; 3+ messages in thread
From: Ilpo Järvinen @ 2023-12-15 11:40 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Henry Shi, Hans de Goede, platform-driver-x86, kernel-janitors,
	LKML

[-- Attachment #1: Type: text/plain, Size: 883 bytes --]

On Fri, 15 Dec 2023, Colin Ian King wrote:

> There is a spelling mistake in a literal string. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  drivers/platform/x86/silicom-platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/silicom-platform.c b/drivers/platform/x86/silicom-platform.c
> index 84b92b3f9f4b..6ce43ccb3112 100644
> --- a/drivers/platform/x86/silicom-platform.c
> +++ b/drivers/platform/x86/silicom-platform.c
> @@ -866,7 +866,7 @@ static int silicom_fan_control_read_labels(struct device *dev,
>  {
>  	switch (type) {
>  	case hwmon_fan:
> -		*str = "Silicom_platfomr: Fan Speed";
> +		*str = "Silicom_platform: Fan Speed";
>  		return 0;
>  	case hwmon_temp:
>  		*str = "Silicom_platform: Thermostat Sensor";
> 

Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>


-- 
 i.

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

* Re: [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform"
  2023-12-15 11:27 [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform" Colin Ian King
  2023-12-15 11:40 ` Ilpo Järvinen
@ 2023-12-18 13:59 ` Hans de Goede
  1 sibling, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2023-12-18 13:59 UTC (permalink / raw)
  To: Colin Ian King, Henry Shi, Ilpo Järvinen,
	platform-driver-x86
  Cc: kernel-janitors, linux-kernel

Hi,

On 12/15/23 12:27, Colin Ian King wrote:
> There is a spelling mistake in a literal string. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@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/silicom-platform.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/silicom-platform.c b/drivers/platform/x86/silicom-platform.c
> index 84b92b3f9f4b..6ce43ccb3112 100644
> --- a/drivers/platform/x86/silicom-platform.c
> +++ b/drivers/platform/x86/silicom-platform.c
> @@ -866,7 +866,7 @@ static int silicom_fan_control_read_labels(struct device *dev,
>  {
>  	switch (type) {
>  	case hwmon_fan:
> -		*str = "Silicom_platfomr: Fan Speed";
> +		*str = "Silicom_platform: Fan Speed";
>  		return 0;
>  	case hwmon_temp:
>  		*str = "Silicom_platform: Thermostat Sensor";


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

end of thread, other threads:[~2023-12-18 13:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-15 11:27 [PATCH][next] platform/x86: silicom-platform: Fix spelling mistake "platfomr" -> "platform" Colin Ian King
2023-12-15 11:40 ` Ilpo Järvinen
2023-12-18 13:59 ` Hans de Goede

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