diff mbox

platform/x86: GPD pocket fan: fix spelling mistake: "Mill-celcius" -> "millicelsius"

Message ID 20180209115340.32347-1-colin.king@canonical.com (mailing list archive)
State Accepted, archived
Delegated to: Andy Shevchenko
Headers show

Commit Message

Colin King Feb. 9, 2018, 11:53 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in MODULE_PARM_DESC text and remove
unnecessary hyphen

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/platform/x86/gpd-pocket-fan.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Andy Shevchenko Feb. 9, 2018, 1:38 p.m. UTC | #1
On Fri, Feb 9, 2018 at 1:53 PM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Trivial fix to spelling mistake in MODULE_PARM_DESC text and remove
> unnecessary hyphen

Applied with a period added to my reviewing and testing queue, thanks!

>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/platform/x86/gpd-pocket-fan.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/platform/x86/gpd-pocket-fan.c b/drivers/platform/x86/gpd-pocket-fan.c
> index 2d645c505f81..3b923df15b9b 100644
> --- a/drivers/platform/x86/gpd-pocket-fan.c
> +++ b/drivers/platform/x86/gpd-pocket-fan.c
> @@ -19,12 +19,12 @@
>  static int temp_limits[3] = { 55000, 60000, 65000 };
>  module_param_array(temp_limits, int, NULL, 0444);
>  MODULE_PARM_DESC(temp_limits,
> -                "Milli-celcius values above which the fan speed increases");
> +                "Millicelsius values above which the fan speed increases");
>
>  static int hysteresis = 3000;
>  module_param(hysteresis, int, 0444);
>  MODULE_PARM_DESC(hysteresis,
> -                "Hysteresis in milli-celcius before lowering the fan speed");
> +                "Hysteresis in millicelsius before lowering the fan speed");
>
>  static int speed_on_ac = 2;
>  module_param(speed_on_ac, int, 0444);
> --
> 2.15.1
>
diff mbox

Patch

diff --git a/drivers/platform/x86/gpd-pocket-fan.c b/drivers/platform/x86/gpd-pocket-fan.c
index 2d645c505f81..3b923df15b9b 100644
--- a/drivers/platform/x86/gpd-pocket-fan.c
+++ b/drivers/platform/x86/gpd-pocket-fan.c
@@ -19,12 +19,12 @@ 
 static int temp_limits[3] = { 55000, 60000, 65000 };
 module_param_array(temp_limits, int, NULL, 0444);
 MODULE_PARM_DESC(temp_limits,
-		 "Milli-celcius values above which the fan speed increases");
+		 "Millicelsius values above which the fan speed increases");
 
 static int hysteresis = 3000;
 module_param(hysteresis, int, 0444);
 MODULE_PARM_DESC(hysteresis,
-		 "Hysteresis in milli-celcius before lowering the fan speed");
+		 "Hysteresis in millicelsius before lowering the fan speed");
 
 static int speed_on_ac = 2;
 module_param(speed_on_ac, int, 0444);