Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1ca80e4 authored by Colin Ian King's avatar Colin Ian King Committed by Andy Shevchenko
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent c8ba9db2
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -19,12 +19,12 @@
static int temp_limits[3] = { 55000, 60000, 65000 };
static int temp_limits[3] = { 55000, 60000, 65000 };
module_param_array(temp_limits, int, NULL, 0444);
module_param_array(temp_limits, int, NULL, 0444);
MODULE_PARM_DESC(temp_limits,
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;
static int hysteresis = 3000;
module_param(hysteresis, int, 0444);
module_param(hysteresis, int, 0444);
MODULE_PARM_DESC(hysteresis,
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;
static int speed_on_ac = 2;
module_param(speed_on_ac, int, 0444);
module_param(speed_on_ac, int, 0444);