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

Commit 613e5f33 authored by Milan Broz's avatar Milan Broz Committed by Andi Kleen
Browse files

ACPI: Fix now signed module parameter.



Signed-off-by: default avatarMilan Broz <mbroz@redhat.com>
Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
parent b09c3e3f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -71,7 +71,7 @@ static DEFINE_MUTEX(performance_mutex);
 *  1 -> ignore _PPC totally -> forced by user through boot param
 *  1 -> ignore _PPC totally -> forced by user through boot param
 */
 */
static int ignore_ppc = -1;
static int ignore_ppc = -1;
module_param(ignore_ppc, uint, 0644);
module_param(ignore_ppc, int, 0644);
MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \
MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \
		 "limited by BIOS, this should help");
		 "limited by BIOS, this should help");