summaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86/gpd-pocket-fan.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-02-09 11:53:40 +0000
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2018-02-15 12:21:48 +0200
commitb1ca80e4a23b91fc90545919dda90a32ec558663 (patch)
tree22c23821708c393007fdce1af5b9c11ab1ce76df /drivers/platform/x86/gpd-pocket-fan.c
parentc8ba9db2a790c0fcf2f6c4cafd45ff3a0751800e (diff)
downloadlinux-b1ca80e4a23b91fc90545919dda90a32ec558663.tar.bz2
platform/x86: GPD pocket fan: fix spelling mistake: "Mill-celcius" -> "millicelsius"
Trivial fix to spelling mistake in MODULE_PARM_DESC text and remove unnecessary hyphen. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/gpd-pocket-fan.c')
-rw-r--r--drivers/platform/x86/gpd-pocket-fan.c4
1 files 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..be85ed966bf3 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);